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

View File

@@ -17,6 +17,8 @@ type Mutation {
type Group {
id: Int!
displayName: String!
creationDate: DateTimeUtc!
uuid: String!
"The groups to which this user belongs."
users: [User!]!
}
@@ -67,6 +69,7 @@ type User {
firstName: String!
lastName: String!
creationDate: DateTimeUtc!
uuid: String!
"The groups to which this user belongs."
groups: [Group!]!
}