mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
11 lines
262 B
TypeScript
11 lines
262 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
|
|
}
|
|
}
|
|
`
|