mirror of
https://github.com/lldap/lldap.git
synced 2024-12-01 04:28:22 +00:00
11 lines
133 B
GraphQL
11 lines
133 B
GraphQL
|
query GetGroupDetails($id: Int!) {
|
||
|
group(groupId: $id) {
|
||
|
id
|
||
|
displayName
|
||
|
users {
|
||
|
id
|
||
|
displayName
|
||
|
}
|
||
|
}
|
||
|
}
|