2021-06-30 12:47:15 -03:00

18 lines
287 B
TypeScript

/* GraphQL */
export const loginMutation = `
mutation customerSignInDraft($data: CustomerSignInDraft!) {
customerSignIn(draft: $data) {
customer {
id
email
firstName
lastName
password
}
cart{
id
}
}
}
`