mirror of
https://github.com/lldap/lldap.git
synced 2026-06-14 06:50:57 +00:00
13 lines
159 B
GraphQL
13 lines
159 B
GraphQL
query GetGroupDetails($id: Int!) {
|
|
group(groupId: $id) {
|
|
id
|
|
displayName
|
|
creationDate
|
|
uuid
|
|
users {
|
|
id
|
|
displayName
|
|
}
|
|
}
|
|
}
|