CustomerAccessTokenCreateInput
Input for creating a customer access token during the login process. This input type is used to authenticate a customer by providing their email address and password.
Input Definition
input CustomerAccessTokenCreateInput {
email: String!
password: String!
}Fields
Example
mutation {
customerAccessTokenCreate(input: {
email: "customer@example.com"
password: "securePassword123"
}) {
customerAccessToken {
accessToken
expiresAt
}
customerUserErrors {
field
message
}
}
}Related Types
CustomerAccessTokenCustomerUserError