app: create group attribute schema page (#825)

This commit is contained in:
Austin Alvarado
2024-02-01 10:56:47 -07:00
parent 6ebeee4126
commit 64140b4939
11 changed files with 594 additions and 13 deletions
@@ -0,0 +1,5 @@
mutation CreateGroupAttribute($name: String!, $attributeType: AttributeType!, $isList: Boolean!, $isVisible: Boolean!) {
addGroupAttribute(name: $name, attributeType: $attributeType, isList: $isList, isVisible: $isVisible, isEditable: false) {
ok
}
}