Créer/modifier/rejoindre/quitter un groupe de travail

This commit is contained in:
2020-07-22 22:25:03 +02:00
parent bc9aa1721a
commit 4a340529da
13 changed files with 403 additions and 34 deletions

View File

@ -17,7 +17,11 @@ type Workgroup {
members: [User]!
}
input WorkgroupsFilter {
ids: [ID]
}
type Query {
userProfile: User
workgroups: [Workgroup]!
workgroups(filter: WorkgroupsFilter): [Workgroup]!
}