Skip to content

signInPayload

Autogenerated return type of signIn.

Fields

api_key · String · API Key created
blocked_by_2fa · Boolean · Blocked by 2fa status
blocked_by_2fa_type · MfaType · 2fa challenge type
deprecated DO NOT USE
messages · [FieldError] · The list of errors occurred during the mutation
token · String · Token returned for authorization
user · User · User info

Used By

Definition

"""
Autogenerated return type of signIn.
"""
type signInPayload {
"""
API Key created
"""
api_key: String
"""
Blocked by 2fa status
"""
blocked_by_2fa: Boolean
"""
2fa challenge type
"""
blocked_by_2fa_type: MfaType
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
The list of errors occurred during the mutation
"""
messages: [FieldError]
"""
Token returned for authorization
"""
token: String
"""
User info
"""
user: User
}