Coder Social home page Coder Social logo

Comments (11)

tothandras avatar tothandras commented on June 20, 2024 3

What did I just read... @nodkz

PS. I hate tests ;) and it difficult for me to write them. So if somebody add tests for my changes, it will be cool. Thanks!

wait...

from graffiti-mongoose.

brysgo avatar brysgo commented on June 20, 2024

Here is the hack I'm using to add subdocuments after I get the types back from graffiti-mongoose.

import ObjectID from 'bson-objectid';
import {
  GraphQLList,
} from 'graphql'

export default {
  plural: (model, type) => {
    return {
      type: new GraphQLList(type),
      resolve: (modelInstance, params, source, fieldASTs) => {
        let ids = modelInstance[fieldASTs.name.value].map(ObjectID);
        return model.find({ _id: { '$in': ids } });
      }
    }
  },

  singular: (model, type) => {
    return {
      type: type,
      resolve: (modelInstance, params, source, fieldASTs) => {
        return model.findOne({
          _id: ObjectID(modelInstance[fieldASTs.name.value])
        })
      }
    }
  }
}

In case it helps whomever is implementing this.

from graffiti-mongoose.

hekike avatar hekike commented on June 20, 2024

@brysgo thanks, but I mean under subdocument when it is:

var childSchema = new Schema({ name: 'string' });

var parentSchema = new Schema({
  children: [childSchema]
})

For Array of ObjectId references graffiti works, like this:

var personSchema = Schema({
  _id     : Number,
  name    : String,
  age     : Number,
  stories : [{ type: Schema.Types.ObjectId, ref: 'Story' }]
});

var storySchema = Schema({
  _creator : { type: Number, ref: 'Person' },
  title    : String,
  fans     : [{ type: Number, ref: 'Person' }]
});

var Story  = mongoose.model('Story', storySchema);
var Person = mongoose.model('Person', personSchema);

from graffiti-mongoose.

brysgo avatar brysgo commented on June 20, 2024

I guess I misunderstood. I was unable to query through an objectid reference before. Is that supported? Where can I find an example?

from graffiti-mongoose.

hekike avatar hekike commented on June 20, 2024

@brysgo https://github.com/RisingStack/graffiti-example but I just realised that it's only array of refs. Simple ref is missing, I'm going to do during this weekend.

from graffiti-mongoose.

brysgo avatar brysgo commented on June 20, 2024

Thanks!

from graffiti-mongoose.

hekike avatar hekike commented on June 20, 2024

@brysgo done. ObjectID support with reference is finished and released as v1.6.0.

from graffiti-mongoose.

ivawzh avatar ivawzh commented on June 20, 2024

+1 for support for sub document and object type

from graffiti-mongoose.

AbrahamAlcaina avatar AbrahamAlcaina commented on June 20, 2024

Hey, first thanks for this report.
Do you have any update of this issue?

from graffiti-mongoose.

jashmenn avatar jashmenn commented on June 20, 2024

FWIW I think this is fixed in c473304

from graffiti-mongoose.

nodkz avatar nodkz commented on June 20, 2024

Supporting EmbeddedSchemas, Enum, InputObjectType in mutations:
see #104
Just wait when PR was accepted, or fork my branch https://github.com/nodkz/graffiti-mongoose

PS. I hate tests ;) and it difficult for me to write them. So if somebody add tests for my changes, it will be cool. Thanks!

from graffiti-mongoose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.