OBJECT

Query

The schema's entry point for public, unauthenticated queries.

link GraphQL Schema definition

  • type Query {
  • # The schema's entry point for authenticated queries.
  • # An authentication token is required. The token is extracted from cookies.
  • #
  • # Cookies
  • # token: Authentication token obtainable upon signing in
  • auth: AuthQuery!
  • # The schema's entry point for authenticated queries.
  • # An authentication token is required. The token is sent as an argument.
  • #
  • # Arguments
  • # token: Authentication token obtainable upon signing in
  • authDirectly(token: String!): AuthQuery!
  • }

link Require by

This element is not required by anyone