OBJECT

AuthMutation

link GraphQL Schema definition

  • type AuthMutation {
  • # Support generation of a session access token from a user token
  • #
  • # Arguments
  • # userToken: [Not documented]
  • generateAccessToken(userToken: String!): AuthAccessToken!
  • # Support generation of a session access token from a client ID and secret
  • #
  • # Arguments
  • # clientID: [Not documented]
  • # clientSecret: [Not documented]
  • generateAccessTokenClientCredentials(
  • clientID: String!,
  • clientSecret: String!
  • ): AuthAccessToken!
  • # Mutation for managing projects
  • projectMutation: ProjectMutation
  • }

link Require by