Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 611 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 611 Bytes
  1. Play around with the following subgraph and see if you can come up with 3 interesting/fun queries:

  2. 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
  }
}