GraphQL schema document requires schema section which describe root operations.
Right now these operations are specified as config parameter overblog_graphql.definitions.schema.query.
I suggest to add support to describe root operations in GraphQL schema language.
schema {
query: Query
mutation: Mutation
}
type Query {
hero(episode: Episode): Character
droid(id: ID!): Droid
}
GraphQL schema document requires
schema
section which describe root operations. Right now these operations are specified as config parameteroverblog_graphql.definitions.schema.query
. I suggest to add support to describe root operations in GraphQL schema language.