mentorenwahl/frontend/graphql/queries/users_by_role_students.graphql

17 lines
164 B
GraphQL
Raw Normal View History

2023-01-17 05:56:19 +00:00
query Students {
students {
id
user {
id
firstName
lastName
username
role
admin
}
vote {
id
}
}
}