Tabi Graph
Introduction
Tabi Graph is built using Graph Node, an open-source Rust implementation whose event sources come from the Ethereum blockchain to deterministically update data stores that can be queried through GraphQL endpoints.
Instructions
Installing the Graph CLI
On your local computer, run one of the following commands: Use npm:
Use yarn:
Initialization
Subgraph preparation
When making changes to Subgraph, three main files will be used:
List (subgraph.yaml) - The list defines which data sources will be indexed by the subgraph.
Schema (schema.graphql) - GraphQL schema defines the data retrieved from the subgraph.
AssemblyScript mapping (mapping.ts) - code that converts data in a data source into entities defined in a schema.
Refer to The Graph
Deployment
Once your Subgraph is written, run the following command:
Query
Query address: https://graph.testnet.tabichain.com/subgraphs/name/ < NAME >
Example
https://github.com/graphprotocol/example-subgraph
Reference
https://github.com/graphprotocol/graph-node?tab=readme-ov-file
Last updated