forked from graphprotocol/graph-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-schema.graphql
122 lines (102 loc) · 2.03 KB
/
manifest-schema.graphql
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
scalar String
scalar File
scalar BigInt
type Schema {
file: File!
}
union DataSource =
EthereumContractDataSource |
NearContractDataSource
union DataSourceTemplate = EthereumContractDataSourceTemplate
type EthereumContractDataSource {
kind: String!
name: String!
network: String
source: EthereumContractSource!
mapping: EthereumContractMapping!
}
type NearContractDataSource {
kind: String!
name: String!
network: String
source: NearContractSource!
mapping: NearContractMapping!
}
type EthereumContractSource {
address: String
abi: String!
startBlock: BigInt
}
type NearContractSource {
account: String
startBlock: BigInt
}
type EthereumContractMapping {
kind: String
apiVersion: String!
language: String!
file: File!
entities: [String!]!
abis: [EthereumContractAbi!]!
blockHandlers: [EthereumBlockHandler!]
callHandlers: [EthereumCallHandler!]
eventHandlers: [EthereumContractEventHandler!]
}
type NearContractMapping {
apiVersion: String!
language: String!
file: File!
entities: [String!]!
blockHandlers: [NearBlockHandler!]
receiptHandlers: [NearReceiptHandler!]
}
type EthereumContractAbi {
name: String!
file: File!
}
type EthereumBlockHandler {
handler: String!
filter: EthereumBlockFilter
}
type EthereumBlockFilter {
kind: String!
}
type NearBlockHandler {
handler: String!
}
type EthereumCallHandler {
function: String!
handler: String!
}
type NearReceiptHandler {
handler: String!
}
type EthereumContractEventHandler {
event: String!
topic0: String
handler: String!
}
type Graft {
base: String!
block: BigInt!
}
type SubgraphManifest {
specVersion: String!
features: [String!]
schema: Schema!
description: String
repository: String
graft: Graft
dataSources: [DataSource!]!
templates: [DataSourceTemplate!]
}
type EthereumContractDataSourceTemplate {
kind: String!
name: String!
network: String
source: EthereumContractSourceTemplate!
mapping: EthereumContractMapping!
}
type EthereumContractSourceTemplate {
abi: String!
}