nfts
Search and filter NFTs across all contracts with pagination. Supports cross-contract search by name.
Schema Definition
nfts(
first: Int = 10
after: Cursor
where: NFTFilter
orderBy: NFTOrderBy
orderDirection: OrderDirection
): NFTList!
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 | NFTFilter input | Filter criteria for NFTs, including contract filters for cross-contract search. |
orderBy | NFTOrderBy enum | Field to sort results by. |
orderDirection | OrderDirection enum | Sort direction (ascending or descending). |
Return Type
| Type | Description |
|---|---|
NFTList! object | Paginated list of individual NFTs. |