lldap/app/queries/get_group_details.graphql
Iván Izaguirre 5c584536b5
frontend: Add UUID and creation date
This exposes the new info in the GraphQL API, and adds it to the frontend.
2022-07-21 12:10:37 +02:00

13 lines
159 B
GraphQL

query GetGroupDetails($id: Int!) {
group(groupId: $id) {
id
displayName
creationDate
uuid
users {
id
displayName
}
}
}