mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
21 lines
416 B
TypeScript
21 lines
416 B
TypeScript
|
|
export const loginMutation = /* GraphQL */`
|
|
mutation login($loginInput:CustomerUserAuthInfoInput!) {
|
|
account:createCustomerAuthTicket(customerUserAuthInfoInput:$loginInput) {
|
|
accessToken
|
|
userId
|
|
refreshToken
|
|
refreshTokenExpiration
|
|
accessTokenExpiration
|
|
customerAccount {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
userName
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|