server: return attributes in graphql

Progress for #67
This commit is contained in:
Valentin Tolmer
2023-07-10 10:42:51 +02:00
committed by nitnelave
parent 630ac5fd8c
commit e53ce92c96
2 changed files with 130 additions and 6 deletions

6
schema.graphql generated
View File

@@ -1,3 +1,8 @@
type AttributeValue {
name: String!
value: [String!]!
}
input EqualityConstraint {
field: String!
value: String!
@@ -78,6 +83,7 @@ type User {
avatar: String
creationDate: DateTimeUtc!
uuid: String!
attributes: [AttributeValue!]!
"The groups to which this user belongs."
groups: [Group!]!
}