List RMA statuses
Returns the store's return statuses. Default statuses cannot be deleted. Nodes come back as a cursor-paginated connection.
Operation
| Operation | Type | Purpose |
|---|---|---|
adminRmaStatuses(first: Int, after: String) | QueryCollection | List RMA statuses with cursor pagination |
Arguments
All arguments are optional and combine in a single query.
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.
| Argument | Type | Match | Example |
|---|---|---|---|
title | String | Partial (contains). | "Awaiting" |
status | Int | Exact — 1 active, 0 inactive. | 1 |
Sorting
| Argument | Type | Values |
|---|---|---|
sort | String | id (default), title |
order | String | asc, desc (default desc) |
Select _id for the numeric id. For field meanings, see the menu overview.

