frontend: Add UUID and creation date

This exposes the new info in the GraphQL API, and adds it to the frontend.
This commit is contained in:
Iván Izaguirre
2022-07-21 12:10:37 +02:00
committed by GitHub
parent 4ba0db4e9e
commit 5c584536b5
8 changed files with 88 additions and 3 deletions
+2
View File
@@ -2,6 +2,8 @@ query GetGroupDetails($id: Int!) {
group(groupId: $id) {
id
displayName
creationDate
uuid
users {
id
displayName
+1
View File
@@ -2,5 +2,6 @@ query GetGroupList {
groups {
id
displayName
creationDate
}
}
+1
View File
@@ -6,6 +6,7 @@ query GetUserDetails($id: String!) {
firstName
lastName
creationDate
uuid
groups {
id
displayName