mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 04:01:21 +00:00
20 lines
375 B
TypeScript
20 lines
375 B
TypeScript
|
|
export const loginMutation = `
|
|
mutation login($loginInput:CustomerUserAuthInfoInput!) {
|
|
account:createCustomerAuthTicket(customerUserAuthInfoInput:$loginInput) {
|
|
accessToken
|
|
userId
|
|
refreshToken
|
|
refreshTokenExpiration
|
|
customerAccount {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
userName
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|