wikijs-fork/client/graph/login/login-mutation-login.gql
2018-10-12 16:41:21 -04:00

16 lines
321 B
GraphQL

mutation($username: String!, $password: String!, $strategy: String!) {
authentication {
login(username: $username, password: $password, strategy: $strategy) {
responseResult {
succeeded
errorCode
slug
message
}
jwt
tfaRequired
tfaLoginToken
}
}
}