graphql-go
graphql-go copied to clipboard
GraphQL server with a focus on ease of use
I encountered this error while defining my schema, but I didn't have any idea how to fix it. Eventually I found the error message in `graphql-go`'s source and found this...
Add a configurable preprocesing query ("clasification") during the validation phase of execution. This is utils for the phase of resolver. We think that the solution for this could be similar...
Is there any support (or plans for it) for this content type for input? e.g. I expected the following request to work from the simple server example in the readme:...
Right now when you execute against the schema, it parses the queries each time. We could speed up these executions by either parsing some queries beforehand or caching previously seen...
I'm trying to use our [graphql-go](https://github.com/neelance/graphql-go/) based API in combination with [Graphcools GraphQL Playground](https://github.com/graphcool/graphql-playground) and [GraphiQL](https://github.com/graphql/graphiql) and I'm getting the following error in both: `Introspection must provide input type for...
Moving the schema into its own file allows for syntax highlighting and a cleaner reading experience. A `Makefile` is also included to simplify the execution of `go generate` to transpile...
hey guys, how do I get past this error and what am I doing wrong? `panic occurred: interface conversion: resolvable.Resolvable is nil, not *resolvable.Object` below I have my schema and...
Introduces name validation for types, directives, and entry points. The rules are outlined in the GraphQL spec ([1](http://facebook.github.io/graphql/draft/#sec-Schema), [2](http://facebook.github.io/graphql/draft/#sec-Naming-conventions)) and quoted below: > All types within a GraphQL schema must...
Hi, I'm writing Go / GraphQL applications and I'm looking to make everything a "module" / "plugin". Is there any plan to allow slice of schemas and resolvers for `MustParseSchema`...
### Expected behavior Given the schema ```graphql interface Namer { name: String! } type User implements Namer { id: ID! name(type: NameType = FULL): String! email: String! } enum NameType...