app: Add support for group attributes

This commit is contained in:
Valentin Tolmer
2024-10-22 00:25:38 +02:00
committed by nitnelave
parent a95ac38083
commit 305b272cdf
8 changed files with 367 additions and 48 deletions
+17
View File
@@ -8,5 +8,22 @@ query GetGroupDetails($id: Int!) {
id
displayName
}
attributes {
name
value
}
}
schema {
groupSchema {
attributes {
name
attributeType
isList
isVisible
isEditable
isHardcoded
isReadonly
}
}
}
}
+6
View File
@@ -0,0 +1,6 @@
mutation UpdateGroup($group: UpdateGroupInput!) {
updateGroup(group: $group) {
ok
}
}