> For the complete documentation index, see [llms.txt](https://docs.ternoa.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ternoa.network/getting-started/javascript-sdk/ternoa-indexer/start-to-query/using-a-playground.md).

# Using a playground

### Use it from the playground

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

* [**The Alphanet indexer**](https://indexer-alphanet.ternoa.dev/)
* [**The Mainnet indexer**](https://indexer-mainnet.ternoa.network/)

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

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

**The same example in the playground:**

<figure><img src="https://4243142665-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmktDjNnp8rvsgQsujVRm%2Fuploads%2FPYKqOwmLjptU2sfLRHOb%2Fplayground-example.png?alt=media&amp;token=98919e01-f15b-4a96-bf8e-bd32babd3943" alt=""><figcaption></figcaption></figure>

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

<figure><img src="https://4243142665-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FmktDjNnp8rvsgQsujVRm%2Fuploads%2Fv0Zek4yOZEXNe7lNcADr%2Fplayground-schema.png?alt=media&amp;token=05a50a36-bb3b-4474-80f0-179cb6de69e1" alt=""><figcaption></figcaption></figure>
