mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 06:01:21 +00:00
18 lines
287 B
TypeScript
18 lines
287 B
TypeScript
/* GraphQL */
|
|
export const loginMutation = `
|
|
mutation customerSignInDraft($data: CustomerSignInDraft!) {
|
|
customerSignIn(draft: $data) {
|
|
customer {
|
|
id
|
|
email
|
|
firstName
|
|
lastName
|
|
password
|
|
}
|
|
cart{
|
|
id
|
|
}
|
|
}
|
|
}
|
|
`
|