List RMA custom fields
Returns the store's return custom fields. options is populated only for select / multiselect / checkbox / radio types. Nodes come back as a cursor-paginated connection.
Operation
| Operation | Type | Purpose |
|---|---|---|
adminRmaCustomFields(first: Int, after: String) | QueryCollection | List RMA custom fields 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 |
|---|---|---|---|
code | String | Partial (contains). | "resolution" |
label | String | Partial (contains). | "Preferred" |
type | String | Exact input type. | "select" |
status | Int | Exact — 1 active, 0 inactive. | 1 |
Sorting
| Argument | Type | Values |
|---|---|---|
sort | String | id (default), position, code |
order | String | asc, desc (default desc) |
Select _id for the numeric id. For field meanings, see the menu overview.

