GithubHelp home page GithubHelp logo

Comments (6)

leebyron avatar leebyron commented on April 20, 2024 16

GraphQL types can refer to themselves by implementing fields as a function rather than an object. In fact, supplying an object is a shorthand for a function that returns that object:

var RecursiveType = new GraphQLObjectType({
  name: 'Recursive',
  fields: {
    recurse: { type: RecursiveType }
  }
});

Will not work because you reference RecursiveType before it's defined. Instead, use a function for fields.

var RecursiveType = new GraphQLObjectType({
  name: 'Recursive',
  fields: function () {
    return {
      recurse: { type: RecursiveType }
    }
  }
});

Or if you're using ES6 arrow functions

var RecursiveType = new GraphQLObjectType({
  name: 'Recursive',
  fields: () => ({
    recurse: { type: RecursiveType }
  })
});

The function is called after the type is defined, ensuring the variable has been set before it is referenced.

from graphql-js.

bentron2000 avatar bentron2000 commented on April 20, 2024 1

@leebyron

Thanks for the tips here.

What if I'm declaring a GraphQLUnionType instead of GraphQLObjectType?

I have a NestedType with a 'parent' attribute that is defined as a UnionParentType.

const UnionParentType = GraphQLUnionType({
  name: 'ParentType',
  types: [RootType, NestedType],
  resolveType: (parent) => {
    if (parent instanceof Root) {
      return RootType;
    }
    return NestedType;
  }
});

When I run this - It doesn't work.
I get an error Error: ParentType may only contain Object types, it cannot contain: undefined.

Is it possible to work recursively like this with union types?

from graphql-js.

tuxsudo avatar tuxsudo commented on April 20, 2024 1

Is it possible to work recursively like this with union types?

The types property of a GraphQLUnionType can also be thunk, so the previous error might be fixed with:

const UnionParentType = GraphQLUnionType({
  name: 'ParentType',
  types: () => [RootType, NestedType], // <--- this changed
  resolveType: (parent) => {
    if (parent instanceof Root) {
      return RootType;
    }
    return NestedType;
  }
});

I was also getting an error like:

Type may only contain Object types, it cannot contain: undefined

It was fixed by changing types from an array to a function that returns an array.

from graphql-js.

vslinko avatar vslinko commented on April 20, 2024

Also GraphQL type could reference to itself.

from graphql-js.

vslinko avatar vslinko commented on April 20, 2024

@leebyron Thank you very much for quick reply!

from graphql-js.

kiotoze avatar kiotoze commented on April 20, 2024

@leebyron Very helpfull, thanks!
That happened to me when I include same GraphQLObjectType in different files. But I have also Enum dependent in different files
Do you know how to make same trick with GraphQLEnumType?

from graphql-js.

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.