Try it out here
Example query:
{
  tokens(first: 5) {
    id
    tokenID
    tokenURI
    externalURL
    image 
    name 
    description
    type 
    sun 
    moon 
    rising 
    updatedAtTimestamp 
    owner {
      id 
    }
  }
}Filtering
{
  tokens(
    where: {
      sun_contains: "capricorn"
    }
  ) {
    sun 
    name
  }
}Full text search
{
  covenSearch(
    text: "'CRUSH PEARLS IN YOUR FISTS'"
  ) {
    id
    name
    description
  }
}This project is an example of how you can build and deploy Graph Protocol APIs for NFT projects.
This subgraph indexes data from Cryptocoven smart contract transactions and makes them queryable.
This API enables advanced querying capabilities like full text search, relationships between tokens and users, filtering, sorting, and pagination.
To deploy this API, follow these steps:
- Clone this repo, change into the directory, and install the dependencies:
 
git clone [email protected]:dabit3/cryptocoven-api.git
cd cryptocoven-api
npm install- 
Visit The Graph hosted service dashboard, create a profile, and create a new subgraph by clicking Add Subgraph.
 - 
Install The Graph CLI:
 
npm install -g @graphprotocol/graph-cli- Authenticate the your CLI environment with the Access Token from your account dashboard:
 
graph auth https://api.thegraph.com/deploy/ <ACCESS_TOKEN>
- 
Replace
username/apinameinpackage.jsonwith your username and apiname, for example:dabit3/cryptocovenapi - 
Deploy the subgraph
 
yarn deploy