-
Play around with the following subgraph and see if you can come up with 3 interesting/fun queries:
-
Clone this repo and implement the queries in a React app:
a.
git clone [email protected]:ChainShot/fun-with-thegraph.git
b.
npm i
c.
npm start
Some example queries:
{
tokens(first: 5) {
id
tokenID
contentURI
imageURI
eyes
}
}
{
tokens(first: 5, where: { eyes_contains: "Blindfold"}) {
id
tokenID
contentURI
imageURI
eyes
}
}