mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 00:46:59 +00:00
15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
export const SessionCreate = /* GraphQL */ `
|
|
mutation SessionCreate($email: String!, $password: String!) {
|
|
tokenCreate(email: $email, password: $password) {
|
|
token
|
|
refreshToken
|
|
csrfToken
|
|
errors {
|
|
code
|
|
field
|
|
message
|
|
}
|
|
}
|
|
}
|
|
`
|