app: create group attribute schema page (#825)

This commit is contained in:
Austin Alvarado
2024-02-01 10:56:47 -07:00
committed by GitHub
parent bb2654f9c2
commit 8f2391a792
11 changed files with 593 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
}
}