graphql: Add a method to look up a group's details

This commit is contained in:
Valentin Tolmer
2021-10-11 17:03:50 +02:00
committed by nitnelave
parent 9e9129aa3a
commit 65780ae0fe
5 changed files with 29 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ type Query {
user(userId: String!): User!
users(filters: RequestFilter): [User!]!
groups: [Group!]!
group(groupId: Int!): Group!
}
"The details required to create a user."