-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-schema.graphql
89 lines (75 loc) · 1.52 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
scalar String
scalar File
scalar BigInt
type Schema {
file: File!
}
union DataSource = EthereumContractDataSource
union DataSourceTemplate = EthereumContractDataSourceTemplate
type EthereumContractDataSource {
kind: String!
name: String!
network: String
source: EthereumContractSource!
mapping: EthereumContractMapping!
}
type EthereumContractSource {
address: String
abi: String!
startBlock: BigInt
}
type EthereumContractMapping {
kind: String!
apiVersion: String!
language: String!
file: File!
entities: [String!]!
abis: [EthereumContractAbi!]!
blockHandlers: [EthereumBlockHandler!]
callHandlers: [EthereumCallHandler!]
eventHandlers: [EthereumContractEventHandler!]
}
type EthereumContractAbi {
name: String!
file: File!
}
type EthereumBlockHandler {
handler: String!
filter: EthereumBlockFilter
}
type EthereumBlockFilter {
kind: String!
}
type EthereumCallHandler {
function: String!
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!
}