Skip to content

Commit 8cf4a1d

Browse files
committed
Fixed bapp addresses in Subgraph page
1 parent c188064 commit 8cf4a1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/based-applications/developers/subgraph.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Retrieves strategy obligations, balances, and delegator information for a bapp:
1919

2020
```graphql
2121
query getParticipantWeightDataInput {
22-
bapp(id: "1") {
22+
bapp(id: "YOUR_BAPP_ADDRESS") {
2323
strategies {
2424
obligations {
2525
token
@@ -55,7 +55,7 @@ Retrieves the metadata URI for a specific bapp:
5555

5656
```graphql
5757
query getBappMetadataURI {
58-
bapp(id: "1") {
58+
bapp(id: "YOUR_BAPP_ADDRESS") {
5959
metadataURI
6060
}
6161
}
@@ -79,7 +79,7 @@ Retrieves all strategy obligated balances for a bapp:
7979

8080
```graphql
8181
query getAllStrategyObligatedBalancesForBapp {
82-
bapp(id: "1") {
82+
bapp(id: "YOUR_BAPP_ADDRESS") {
8383
strategies {
8484
strategy {
8585
balances {

0 commit comments

Comments
 (0)