ohmyform-ui/graphql/mutation/login.mutation.ts
2020-05-29 16:27:45 +02:00

11 lines
260 B
TypeScript

import {gql} from 'apollo-boost'
export const LOGIN_MUTATION = gql`
mutation login($username: String!, $password: String!) {
tokens: authLogin(username: $username, password: $password) {
access: accessToken
refresh: refreshToken
}
}
`