Basic queries
Query owned NFTs on the nftEntities
query {
nftEntities(
first: 5,
filter: {
owner: { equalTo: "5CDGXH8Q9DzD3TnATTG6qm6f4yR1kbECBGUmh2XbEBQ8Jfa5" }
}
) {
totalCount
nodes {
nftId
owner
creator
collectionId
offchainData
}
}
}
Query created NFTs on the nftEntities
Let's query the 10 first listed NFTs on the nftEntities
Query marketplaces on the marketplaceEntities
Query a specific NFT on the nftEntity
Query specific NFT history on the nftOperationEntities
Last updated