Introduction
Exploring the Subgraph
Subgraph link
Playground Link
Please check the demo video just below how to test queries with The Graph Playground


An Introduction to Writing GraphQL Queries for the Talent Layer Subgraph
The most commonly used entities have a related description entity that stores the off-chain data hosted on IPFS.
On-chain Entity
Off-chain Entity
Service
ServiceDescription
Proposal
ProposalDescription
Review
ReviewDescription
User
UserDescription
Platform
PlatformDescription
The off-chain entity that is related to an on-chain entity can be accessed through the field description. Here is an example of what the relationship looks like in GraphQL.
{
services {
id
description {
id
}
}
}gr
Last updated
Was this helpful?