List Admin Users
Returns the paginated list of admin users — the back-office accounts that can sign in to the admin panel. Each row carries its assigned role (roleId / roleName) and active status.
The password and api_token values are never returned by any user operation.
Operation
| Operation | Type | Purpose |
|---|---|---|
adminSettingsUsers | QueryCollection | List admin users with cursor pagination |
Arguments
All arguments are optional and combine in a single query — filter, sort and paginate together.
Pagination
| Argument | Description |
|---|---|
first | Number of records to return. |
after | Cursor to fetch the page after (from pageInfo.endCursor). |
Filters
Each filter narrows the result; supplying more than one combines with logical AND. They mirror the admin Users datagrid filters.
| Argument | Type | Match | Example |
|---|---|---|---|
name | String | Partial (contains). | "Admin" |
email | String | Partial (contains). | "@example.com" |
role_id | Int | Exact — the assigned role id. | 1 |
status | Int | Exact — 1 (active) or 0 (inactive). | 1 |
Sorting
| Argument | Type | Values |
|---|---|---|
sort | String | id (default), name, email |
order | String | asc, desc (default desc) |
Overview
For field meanings, create/update/delete rules, and delete guards, see the Users overview.
All admin endpoints require an admin Bearer token — see Authentication.

