You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const Schema = ' type Gamer { id: String! } type Query { gamers: [Gamer] }'
If I want to use graphql-go to handle this schema, would it be best (in terms of efficiency and extensibility) to use graphql.MustParseSchema(Schema, &Resolver{}) or to recreate the schema using the graphql-go structs to create new graphql objects?
The text was updated successfully, but these errors were encountered:
Let's say that I have an existing schema:
const Schema = ' type Gamer { id: String! } type Query { gamers: [Gamer] }'
If I want to use graphql-go to handle this schema, would it be best (in terms of efficiency and extensibility) to use
graphql.MustParseSchema(Schema, &Resolver{})
or to recreate the schema using the graphql-go structs to create new graphql objects?The text was updated successfully, but these errors were encountered: