Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

OAuth Token mutation.

Operation details

FieldValue
NameoauthToken
GroupOAuth
TypeMutation
SignatureoauthToken(input: OAuthTokenInput!): OAuthTokenPayload!

Playground

Query

Query
mutation OAuthToken($input: OAuthTokenInput!) {
  oauthToken(input: $input) {
    accessToken
    error
    provider
  }
}

Variables

Variables
{
  "input": {
    "projectId": "",
    "provider": ""
  }
}