Skip to content
/ graph Public

Repo for The Graph containing Dap.ps data

Notifications You must be signed in to change notification settings

dap-ps/graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

discover

A subgraph for dapps which are put on https://dap.ps to be curated by community. Currently hosted at https://thegraph.com/explorer/subgraph/nanspro/discover

Installation

yarn install
yarn codegen
yarn deploy

Example Query

Get metadata of latest 5 dapps

{
  dappMetas(first: 5) {
    id
    ipfsHash
    hash
    status
    details {
      id
      name
      description
      url
      uploader
      image
      category
      dateAdded
    }
  }
}

Get first 10 dapps

{
dappMetas(first: 10) {
    id
    ipfsHash
    hash
    details {
      id
    }
  }
}

Get first 10 dapp's details (not all just few like name, uploader, id)

{
details(first: 5) {
	 id
	 identifier {
	   id
	 }
	 name
	 uploader
  }
}

About

Repo for The Graph containing Dap.ps data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published