lldap/schema.graphql

60 lines
1013 B
GraphQL
Raw Normal View History

input EqualityConstraint {
field: String!
value: String!
}
type Mutation {
createUser(user: UserInput!): User!
}
type Group {
id: String!
"The groups to which this user belongs."
users: [User!]!
}
"""
A filter for requests, specifying a boolean expression based on field constraints. Only one of
the fields can be set at a time.
"""
input RequestFilter {
any: [RequestFilter!]
all: [RequestFilter!]
not: RequestFilter
eq: EqualityConstraint
}
2021-08-30 06:48:06 +00:00
"DateTime"
scalar DateTimeUtc
"The details required to create a user."
input UserInput {
id: String!
email: String!
displayName: String
firstName: String
lastName: String
}
type Query {
apiVersion: String!
user(userId: String!): User!
users(filters: RequestFilter): [User!]!
}
type User {
id: String!
email: String!
displayName: String
firstName: String
lastName: String
2021-08-30 06:48:06 +00:00
creationDate: DateTimeUtc!
"The groups to which this user belongs."
groups: [Group!]!
}
schema {
query: Query
mutation: Mutation
}