2021-06-09 17:02:13 +02:00

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
}
}
}
`