List RMA rules
Returns the store's return rules. Nodes come back as a cursor-paginated connection.
Operation
| Operation | Type | Purpose |
|---|---|---|
adminRmaRules(first: Int, after: String) | QueryCollection | List RMA rules 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 |
|---|---|---|---|
name | String | Partial (contains). | "Apparel" |
status | Int | Exact — 1 active, 0 inactive. | 1 |
Sorting
| Argument | Type | Values |
|---|---|---|
sort | String | id (default), name |
order | String | asc, desc (default desc) |
Select _id for the numeric id. For field meanings, see the menu overview.

