graphql: Add a method to delete a group

This commit is contained in:
Valentin Tolmer
2021-09-24 17:35:46 +02:00
committed by nitnelave
parent 402ef2f83a
commit 3b70762b42
5 changed files with 21 additions and 0 deletions
+1
View File
@@ -9,6 +9,7 @@ type Mutation {
addUserToGroup(userId: String!, groupId: Int!): Success!
removeUserFromGroup(userId: String!, groupId: Int!): Success!
deleteUser(userId: String!): Success!
deleteGroup(groupId: Int!): Success!
}
type Group {