Git Product home page Git Product logo

Comments (8)

alirizwan avatar alirizwan commented on September 28, 2024

is it possible for you to share your widget model? custom types do support nested CUSTOM types. There's only one way this can break, if your custom type name matches with a model name, in that case model type would override custom type.

from graphcraft.

charlie-s avatar charlie-s commented on September 28, 2024

You're so responsive, it's greatly appreciated! Here's full code:

Contractor.graphql.types.contractorJobsInput = {
    statusAccepted: 'boolean!',
    statusShipped: 'boolean!',
};

Contractor.graphql.types.contractorJob = {
    poNumber: 'string',
    number: 'string!',
    designs: '[contractorJobDesign]'
};

Contractor.graphql.types.contractorJobDesign = {
    id: 'number!',
    name: 'string!',
};

Contractor.graphql.queries.contractorJobs = {
    input: 'contractorJobsInput!',
    output: '[contractorJob]!',
    resolver: async (source, input, ctx, info) => {
        ...

I do have a Sequelize model called Design but not designs. I've also tried other names, but whenever I attempt to include these fields I receive that same error. Here's my query:

query {
  contractorJobs(contractorJobsInput: {
    statusAccepted: true
    statusShipped: false
  }) {
    number
    poNumber
    designs {
      name
    }
  }
}

I'm fairly new to GraphQL, so I may be missing something that's unrelated to this module.

from graphcraft.

alirizwan avatar alirizwan commented on September 28, 2024

Your implementation seems correct, maybe problem is somewhere else. The query you shared doesn't include jobs key and the error you are getting is regarding jobs. I m not sure if I can find the root cause here. Can you please share a screenshot of your generated schema?

from graphcraft.

charlie-s avatar charlie-s commented on September 28, 2024

Sorry, the first code sample was pseudo. With what I posted, I get:

Cannot query field "designs" on type "contractorJob".

from graphcraft.

alirizwan avatar alirizwan commented on September 28, 2024

I am going to reproduce this issue on my side and get back to you.

from graphcraft.

alirizwan avatar alirizwan commented on September 28, 2024

Charlie, a really tiny issue with the naming,

Contractor.graphql.types.contractorJob = {
    poNumber: 'string',
    number: 'string!',
    designs: '[contractorJobDesign]'
};

You see the Type you are referring to here is contractorJobDesign and even though your key name is designs its renamed to actual Type name, so if you take a look at the schema it's like this:

poNumber: String
number: String!
contractorJobDesign: [contractorJobDesign]

So if you query:

query {
  contractorJobs(contractorJobsInput: {
    statusAccepted: true
    statusShipped: false
  }) {
    number
    poNumber
    contractorJobDesign {
      name
    }
  }
}

it would work.

from graphcraft.

alirizwan avatar alirizwan commented on September 28, 2024

The new update coming would fix this issue, meanwhile I would recommend to use same name for key and type.

from graphcraft.

charlie-s avatar charlie-s commented on September 28, 2024

That works! Thanks Ali. Look forward to the update.

from graphcraft.

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.