graphql-loader
graphql-loader copied to clipboard
Instantiate a GraphQL Schema by loading GraphQL Schema Language files based on a glob pattern
The`graphql`dependency caused the following module clash error; ``` Error: Cannot use GraphQLObjectType "__Directive" from another module or realm. ``` I removed the dependency from the required `dependencies` while maintaining it...
In order to keep compatibility with graphql-tools functionality it would be nice to support this feature: https://www.apollographql.com/docs/graphql-tools/generate-schema.html#descriptions
I was considering using the same approach until I came across the talk. Can the resolver file for each .graphql file sit alongside its corresponding schema and be merged into...
I build a store that have these queries - newestProducts - hotProducts - … If they are in one file I can import them like this. It would be more...