lldap/app/queries/get_user_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

16 lines
197 B
GraphQL

query GetUserDetails($id: String!) {
user(userId: $id) {
id
email
displayName
firstName
lastName
creationDate
uuid
groups {
id
displayName
}
}
}