mirror of https://github.com/dap-ps/graph.git
2f1d1cdd84
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.4. - [Release notes](https://github.com/indutny/elliptic/releases) - [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.4) Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
abis | ||
generated | ||
src | ||
.gitignore | ||
README.md | ||
package.json | ||
schema.graphql | ||
subgraph.yaml | ||
yarn.lock |
README.md
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
}
}