app: Allow custom attributes in group creation

This commit is contained in:
Valentin Tolmer
2024-10-28 15:36:03 +01:00
committed by nitnelave
parent a190fe7ddf
commit 4ebfd0525b
7 changed files with 145 additions and 29 deletions

View File

@@ -1,5 +1,5 @@
mutation CreateGroup($name: String!) {
createGroup(name: $name) {
mutation CreateGroup($group: CreateGroupInput!) {
createGroupWithDetails(request: $group) {
id
displayName
}