@astralprotocol/subgraph
Documentation about the Astral Protocol Subgraph Package.
Description
The @astralprotocol/subgraph serves as the indexing engine of the protocol, capturing the registration and modification events of GeoDIDs in the @astralprotocol/contracts. It acts like a decentralized querying database where it is substantially easier to make complex queries to the Spatial Assets registry. It is used to create the tree of GeoDID nodes that represents their relationships and groupings.
The current version of the subgraph (spatialassetsfinalv1) is indexing the Ethereum Roptsten network at the following GraphQL endpoints:
You can connect to these with your GraphQL client of choice or try them at The Graph's playground.
To add Astral Protocol Subgraph to your application
To develop or try the Astral Protocol Subgraph locally
Prerequisites
Clone the astralprotocol repository and go to packages/subgraph
Run
sudo apt-get install libsecret-1-dev
Run
git clone https://github.com/graphprotocol/graph-node/
(check setup instructions for docker version on https://thegraph.com/docs/)Have the development steps of @astralprotocol/contracts done previously (with Ganache)
Deployment
Ensure you have ganache running with the contracts deployed from
packages/contracts
Update the SpatialAssets contract address that you got from the previous step in the
subgraph.yaml
(if needed and ensure the correct file is named according to the network of deployment - for ganache it should read as mainnet: backup the currentsubgraph.yaml
file and rename it tosubgraphRopsten.yaml
).In another terminal, inside the graph-node folder, run
cd docker && docker-compose up
. If using Docker for WSL, Docker must be running on Windows. If graph-node throws an error try clearing thedata/postgres
folder, within the docker directory of graph-node, withsudo rm -rf data/postgres
. Restart docker if needed.Generate subgraph typescript files with
yarn codegen
, then create and deploy the subgraph to the graph-node withyarn create-local && yarn deploy-local
You can query the subgraph and view the GeoDID tree in the local provided endpoint.
Testing
The following query can be provided to the graphql endpoint to view the GeoDIDs tree (after doing the deployment steps above):
Last updated
Was this helpful?