Ordered queries
Query NFTs ordered by creation timestamp
query {
nftEntities(
first: 10
offset: 0
orderBy: TIMESTAMP_CREATE_DESC
) {
totalCount
nodes {
nftId
owner
collectionId
offchainData
timestampCreate
}
}
}Query NFTs ordered by creation timestamp and price

Last updated