mentorenwahl/frontend/graphql/mutations/login.graphql
Dominic Grimm ff2b884d42
All checks were successful
continuous-integration/drone/push Build is passing
Agent oriented logged in state
2022-11-05 21:27:49 +01:00

6 lines
125 B
GraphQL

mutation Login($username: String!, $password: String!) {
login(username: $username, password: $password) {
token
}
}