Using a playground

Use it from the playground

Depending on the data you are looking for, you can directly query any data needed on:

You just need to create the graphql request, for example, a simple request to get the 10 last listed nft:

{
	nftEntities(first: 10, offset: 0, orderBy: TIMESTAMP_LIST_DESC) {
		totalCount
		nodes {
			nftId
			owner
			creator
			collectionId
			offchainData
		}
	}
}

The same example in the playground:

You can access the whole schema in the right panel of the playground:

Last updated