Table of Contents
Field | Argument | Type | Description |
---|---|---|---|
findPublicUserInfos | [PublicUserInfo]! |
Gets the publicly available information for a list of users with the specified IDs. If a user does not exist, null is returned for that user. |
|
ids | [UUID!]! | ||
currentUserInfo | UserInfo! |
Gets the user information of the currently authorized user. |
|
findUserInfos | [UserInfo]! |
Gets all of the users' information for a list of users with the specified IDs. Only available to privileged users. If a user does not exist, null is returned for that user. |
|
ids | [UUID!]! |
Return type for information about paginated results.
Field | Argument | Type | Description |
---|---|---|---|
page | Int! |
The current page number. |
|
size | Int! |
The number of elements per page. |
|
totalElements | Int! |
The total number of elements across all pages. |
|
totalPages | Int! |
The total number of pages. |
|
hasNext | Boolean! |
Whether there is a next page. |
Field | Argument | Type | Description |
---|---|---|---|
id | UUID! | ||
userName | String! |
Field | Argument | Type | Description |
---|---|---|---|
id | UUID! | ||
userName | String! | ||
firstName | String! | ||
lastName | String! | ||
realmRoles | [GlobalUserRole!]! |
Filter for date values. If multiple filters are specified, they are combined with AND.
Field | Type | Description | |
---|---|---|---|
after | DateTime |
If specified, filters for dates after the specified value. |
|
before | DateTime |
If specified, filters for dates before the specified value. |
Filter for integer values. If multiple filters are specified, they are combined with AND.
Field | Type | Description | |
---|---|---|---|
equals | Int |
An integer value to match exactly. |
|
greaterThan | Int |
If specified, filters for values greater than to the specified value. |
|
lessThan | Int |
If specified, filters for values less than to the specified value. |
Specifies the page size and page number for paginated results.
Field | Type | Description | |
---|---|---|---|
page | Int! |
The page number, starting at 0. If not specified, the default value is 0. For values greater than 0, the page size must be specified. If this value is larger than the number of pages, an empty page is returned. |
|
size | Int! |
The number of elements per page. |
Filter for string values. If multiple filters are specified, they are combined with AND.
Field | Type | Description | |
---|---|---|---|
equals | String |
A string value to match exactly. |
|
contains | String |
A string value that must be contained in the field that is being filtered. |
|
ignoreCase | Boolean! |
If true, the filter is case-insensitive. |
Value | Description |
---|---|
SUPER_USER | |
COURSE_CREATOR |
Specifies the sort direction, either ascending or descending.
Value | Description |
---|---|
ASC | |
DESC |
The Boolean
scalar type represents true
or false
.
The Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31)
and 2^31 - 1.
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most
often used by GraphQL to represent free-form human-readable text.