app: Add a page to create a group

This commit is contained in:
Valentin Tolmer
2021-10-11 18:54:53 +02:00
committed by nitnelave
parent 35ee2834a3
commit 01c82f09eb
7 changed files with 170 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
mutation CreateGroup($name: String!) {
createGroup(name: $name) {
id
displayName
}
}