mirror of
https://github.com/lldap/lldap.git
synced 2024-11-28 17:42:10 +00:00
8bd1dec180
Except group creation
10 lines
133 B
GraphQL
10 lines
133 B
GraphQL
query GetGroupDetails($id: Int!) {
|
|
group(groupId: $id) {
|
|
id
|
|
displayName
|
|
users {
|
|
id
|
|
displayName
|
|
}
|
|
}
|
|
}
|