16 lines
321 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|