Paginated queries
Last updated
query {
nftEntities(
filter: { listedForSale: { equalTo: true } }
first: 10
offset: 10
) {
totalCount
nodes {
nftId
owner
collectionId
offchainData
}
}
}query {
nftEntities(
filter: { listedForSale: { equalTo: true } }
first: 10
offset: 20
) {
totalCount
nodes {
nftId
owner
collectionId
offchainData
}
}
}