addresses
Search and filter addresses with pagination.
Schema Definition
addresses(
first: Int = 10
after: Cursor
where: AddressFilter
orderBy: AddressOrderBy
orderDirection: OrderDirection
): AddressList!
Arguments
| Argument | Type | Description |
|---|---|---|
first | Int scalar | Maximum number of results to return (default: 10, max: 100). |
after | Cursor scalar | Cursor for pagination. Pass the endCursor from a previous query to get the next page. |
where | AddressFilter input | Filter criteria for addresses. |
orderBy | AddressOrderBy enum | Field to sort results by. |
orderDirection | OrderDirection enum | Sort direction (ascending or descending). |
Return Type
| Type | Description |
|---|---|
AddressList! object | Paginated list of addresses. |