mirror of
https://github.com/lldap/lldap.git
synced 2026-07-25 17:58:44 +00:00
app: Implement group management
Except group creation
This commit is contained in:
committed by
nitnelave
parent
42da86cf72
commit
8bd1dec180
@@ -0,0 +1,5 @@
|
||||
mutation DeleteGroupQuery($groupId: Int!) {
|
||||
deleteGroup(groupId: $groupId) {
|
||||
ok
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
query GetGroupDetails($id: Int!) {
|
||||
group(groupId: $id) {
|
||||
id
|
||||
displayName
|
||||
users {
|
||||
id
|
||||
displayName
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,3 +8,9 @@ query ListUsersQuery($filters: RequestFilter) {
|
||||
creationDate
|
||||
}
|
||||
}
|
||||
query ListUserNames($filters: RequestFilter) {
|
||||
users(filters: $filters) {
|
||||
id
|
||||
displayName
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user