api: add the rest of the fields to User

This commit is contained in:
Valentin Tolmer
2021-08-27 01:10:45 +02:00
committed by nitnelave
parent a1f40a32a5
commit 848cc86d73
6 changed files with 43 additions and 31 deletions
+7
View File
@@ -26,9 +26,16 @@ type Query {
users(filters: RequestFilter): [User!]!
}
"NaiveDateTime"
scalar NaiveDateTime
type User {
id: String!
email: String!
displayName: String
firstName: String
lastName: String
creationDate: NaiveDateTime!
"The groups to which this user belongs."
groups: [Group!]!
}