The following queries are SAMPLES. As a consumer of the Scope GraphQL API, you can design and use any properly formed query to retrieve the data that you require. For more information, see “Introduction to the Scope GraphQL API“. |
Here are common use-cases for various User operations like creating, finding, updating or deleting a user.
The mutation query below can be used to create a new user. For reference, you can look at the CreateUserMutation schema.
There are some argument considerations
requestedOriginGroup - The origin group to request. Must be a valid group name UPPERCASED.
requestedLicenses - The licenses to request. Must be an array of LicenseType.ENUM values.
requestedGroups - The groups to request. Must be an array of UPPERCASE strings, ie. [DEFAULT, GROUP1, GROUP2]
mutation { createUser( input: { user: { firstName:<STRING>, lastName:<STRING> credentials: { username: <STRING>, password: <STRING> }, email: <STRING> }, requestedOriginGroup: <STRING> requestedLicenses: Array<LicenseType.ENUM>, requestedGroups: Array<STRING> ) { errors { fullMessage } user { id username email } } } |
This query can be used to find a user(s) based on their email address. Multiple users can be returned if the email address is similar. Additional input arguments can be included to make selection more specific.
{ users( fullText: "luke@jedi.org" first: 1 ) { errors { fullMessage } nodes { id firstName lastName username email } totalCount } } |
When updating a user, the ID retrieved earlier is required. The groups, and origin group use the group name. The licenses need a value from the LicenseTypeEnum.
{ "input": { "id": <STRING>, "requestedGroups": Array<STRING>, "requestedLicenses": Array<STRING>, "requestedOriginGroup": <STRING>, "user": { "email": <STRING>, "firstName": <STRING>, "lastName": <STRING>, "phone": <STRING>, "jobTitle": <STRING> } } } |
mutation updateUser($input: UpdateUserMutationInput!) { updateUser(input: $input) { user { id email firstName lastName phone jobTitle licenses { nodes { licenseType } } groups { nodes { name } } } errors { fullMessage } success } } |
Multiple users can be removed at the same time by using the ids provided by the User queries. There are some exceptions and considerations to this operation:
A user cannot remove themselves
Invalid IDs will be skipped and valid IDs will be used to delete users. Errors of these invalid IDs will be returned.
It does not delete the last company admin. A single company admin must remain in the system.
It does not delete Scope/Support admin users. This will allow the support team to assist.
{"input": {"ids": Array<String> } } |
mutation deleteUsers($input: DeleteUsersMutationInput!) { deleteUsers(input: $input) { errors { fullMessage } success undeletedItems { id name } } } |