CustomerLoginPayload
Result of customerLogin.
type CustomerLoginPayload {
customerAccessToken: CustomerAccessToken
userErrors: [UserError!]!
}
Fields
CustomerLoginPayload.customerAccessToken ● CustomerAccessToken object
Access token on success; null when userErrors is non-empty.
CustomerLoginPayload.userErrors ● [UserError!]! non-null object
Errors carrying a stable CustomerErrorCode in code (e.g. INVALID_CREDENTIALS, CUSTOMER_DISABLED, UNIDENTIFIED_CUSTOMER).
Returned By
customerLogin mutation