CreateTokenPayload
No description
type CreateTokenPayload {
user: User!
token: Token!
signedToken: String!
clientMutationId: String!
}
Fields
CreateTokenPayload.user
● User!
non-null object
user is the possibly modified User.
CreateTokenPayload.token
● Token!
non-null object
token is the Token that was created.
CreateTokenPayload.signedToken
● String!
non-null scalar
signedToken is the signed Token associated with the account.
CreateTokenPayload.clientMutationId
● String!
non-null scalar
clientMutationId is required for Relay support.
Returned By
createToken
mutation