Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.06 KB

README.md

File metadata and controls

33 lines (23 loc) · 1.06 KB

Paulie's GRT Subgraph

Course completed from Graph Academy. This repository contains the subgraph developed during the course on becoming a subgraph developer in The Graph Network. If you're looking to understand the technical intricacies of The Graph and get hands-on experience with subgraphs, this repository and the corresponding course are the right starting points!

About the Course

The course, titled "Subgraph Developer Course-Graph Academy", is tailored to introduce participants to:

  • The core technical aspects of The Graph.
  • The concept, architecture, and nuances of subgraphs.
  • Practical skills needed for developing and deploying subgraphs.

Repository Structure

  • schema.graphql: Defines the entities and their relationships for this subgraph.
  • src/: Contains the mapping logic.

Queries

To test the subgraph, you can use the following basic query:

{
transferEvents(first: 5) {
amount
sender
destination
block
timestamp
transaction
}
}