Skip to main content

PasswordSet

Result of password set mutation.

type PasswordSet {
token: String
refreshToken: String
csrfToken: String
user: User
accountErrors: [AccountError!]!
}

Fields

PasswordSet.token ● String scalar

JWT token for authentication.

PasswordSet.refreshToken ● String scalar

JWT refresh token.

PasswordSet.csrfToken ● String scalar

CSRF token for cookie-based auth.

PasswordSet.user ● User object

The user whose password was set.

PasswordSet.accountErrors ● [AccountError!]! non-null object

List of errors that occurred executing the mutation.

Returned By

passwordSet mutation

Was this page helpful?