Skip to main content

SignInPayload

Autogenerated return type of SignIn.

type SignInPayload {
clientMutationId: String
token: String!
tokenExpiration: ISO8601DateTime!
user: User!
}

Fields

SignInPayload.clientMutationId ● String scalar

A unique identifier for the client performing the mutation.

SignInPayload.token ● String! non-null scalar

Returns the Bearer token to send in the Authorization header. Format this value as this: "Authorization": "Bearer {TOKEN}"

SignInPayload.tokenExpiration ● ISO8601DateTime! non-null scalar

Expiration date time of the session token.

SignInPayload.user ● User! non-null object

Logged user data.

Returned By

signIn mutation