Graphql schema documentation

link GraphQL Schema definition

  • schema {
  • # The root query type which gives access points into the data universe.
  • query: Query
  • # The root mutation type which contains root level fields which mutate data.
  • mutation: Mutation
  • # The root subscription type: contains realtime events you can subscribe to with
  • # the `subscription` operation.
  • subscription: Subscription
  • }