Search and Filter Collectibles
This section provides you with the tools to efficiently manage and retrieve collectibles data. Here’s a brief overview of what you’ll find:
- Basic Filtering: Filter collectibles based on ownership and collection criteria, allowing you to retrieve items owned by specific users or belonging to particular collections.
- Comparative Filtering: Advanced filtering techniques, including direct equal comparisons, property existence filter queries, and text searches, to narrow down your results more precisely.
- Pagination: Handle large datasets effectively by implementing pagination, ensuring a smooth and responsive user experience even when dealing with extensive amounts of collectibles data.
Basic Filtering
Filter Collectibles owned by a user and collection
Retrieve collectibles owned by a user
Properties
addresses (optional)
A list of addresses used to query assets.
e.g.
collectionIds (optional)
A list of collection IDs to filter assets on the addresses provided.
e.g.
Since both the above properties are optional you can use the independently or together based on the use case. For example filtering using addresses
and collectionIds
will return all the collectibles in the specified collections owned by the addresses.
Comparative Filtering
In addition to address and collection-based filtering, further filtering can be done using a direct equal comparison of values, values that fit in a specified range or even a direct text search.
Filter Types
Equal
The name
property is used to target the correct item to filter. The equal filter must take a string property as the value, even if the targeted property is a number.
Has
The has
filter simply filters assets based on the existence of a specific property or attribute in their metadata during querying.
Search
The search filter simply takes a string value to search across all the properties and attributes in the metadata.
Filter Targeting
We don’t need to specify whether the target is an attribute or a property; the filter function handles this automatically.
By traits (aliased as attributes)
Filter through the attributes
e.g. Fur Colour
, Age
By properties
Filter through properties on the metadata
e.g. properties.name
An example of a filter expression will look like the following for the above trait and property filters when put together:
Pagination
Large amounts of collectibles can be returned during querying, this section will help you manage the results to provide better UX to your users.
By default, the Assets Query will return 10 results.
Throughout the API we use Relay compliant pagination.
Page Information
This means we allow the following properties in pageInfo
:
endCursor
- The cursor of the last item returnednextPage
- The cursor for the start of the next page (This is the same asendCursor
)startCursor
- The cursor of the first element retrievedhasNextPage
- If there are more pages of datahasPreviousPage
- If there is a previous page of data (Not supported)
In Query Arguments
When running a paginated query the following properties in the query arguments are available:
after
- The cursor to start from. Typically this would be theendCursor
from a previous queryfirst
- The amount of items that you are requesting to be returned
Usage
Was this page helpful?