-
Notifications
You must be signed in to change notification settings - Fork 8
/
.graphqlconfig
40 lines (40 loc) · 1.42 KB
/
.graphqlconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "mStable Subgraphs Monorepo",
"includes": ["./thegraph.graphql"],
"excludes": ["./packages/*/build/*.graphql", "**/schema.generated.graphql"],
"projects": {
"@mstable/governance-subgraph": {
"name": "mStable Governance Subgraph",
"schemaPath": "./packages/governance/schema.graphql"
},
"@mstable/protocol-subgraph": {
"name": "mStable Protocol Subgraph",
"schemaPath": "./packages/protocol/build/schema.generated.graphql",
"includes": ["./*.graphql", "./packages/protocol/**/*.graphql"],
"extensions": {
"endpoints": {
"Mainnet": {
"url": "https://api.thegraph.com/subgraphs/name/mstable/mstable-protocol"
},
"Mainnet (staging)": {
"url": "https://api.thegraph.com/subgraphs/name/mstable/mstable-protocol-staging"
},
"Kovan": {
"url": "https://api.thegraph.com/subgraphs/name/mstable/mstable-protocol-kovan"
},
"Ropsten": {
"url": "https://api.thegraph.com/subgraphs/name/mstable/mstable-protocol-ropsten"
}
}
}
},
"@mstable/ecosystem-subgraph": {
"name": "mStable Ecosystem Subgraph",
"schemaPath": "./packages/ecosystem/schema.graphql"
},
"@mstable/subgraph-utils": {
"name": "mStable Subgraph Utilities",
"schemaPath": "./packages/utils/schema.graphql"
}
}
}