mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
60 lines
1013 B
GraphQL
60 lines
1013 B
GraphQL
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
|
|
}
|
|
|
|
"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
|
|
creationDate: DateTimeUtc!
|
|
"The groups to which this user belongs."
|
|
groups: [Group!]!
|
|
}
|
|
|
|
schema {
|
|
query: Query
|
|
mutation: Mutation
|
|
}
|