gm @hskang9, welcome to The Graph forum! Subscriptions will be slightly different as described above. Learn more in this forum post: GIP-0035: GraphQL `@live` queries
In a summary, it leverages the @live
GraphQL query directive, so a query looks like this:
query tokens {
pairs @live {
token1 {
id
name
decimals
}
token2 {
id
name
decimals
}
}
}
You can already use that features with Graph Client: graph-client/live.md at main · graphprotocol/graph-client · GitHub