forked from pinax-network/substreams-raw-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
85 lines (73 loc) · 2.31 KB
/
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
type Action @entity {
id: ID!
account: String!
name: String!
jsonData: String!
rawData: String!
receiver: String!
index: BigInt!
globalSequence: BigInt!
isNotify: Boolean!
isInput: Boolean!
console: String!
# order by
timestamp: BigInt! # seconds
block_number: BigInt!
# derived fields
block: Block!
transaction: Transaction!
dbOps: [DbOp!]! @derivedFrom(field: "action")
authorizations: [Authorization!]! @derivedFrom(field: "action")
}
type DbOp @entity {
id: ID!
code: String!
tableName: String!
scope: String!
primaryKey: String!
index: BigInt!
operation: String!
actionIndex: BigInt!
# data
newDataJson: String!
newData: String!
oldDataJson: String!
oldData: String!
# order by
timestamp: BigInt! # seconds
block_number: BigInt!
# derived fields
block: Block!
transaction: Transaction!
action: Action!
}
type Transaction @entity {
id: ID!
index: BigInt!
elapsed: BigInt!
netUsage: BigInt!
scheduled: Boolean!
# order by
timestamp: BigInt! # seconds
block_number: BigInt!
# derived fields
block: Block!
actions: [Action!]! @derivedFrom(field: "transaction")
dbOps: [DbOp!]! @derivedFrom(field: "transaction")
}
type Authorization @entity {
id: ID!
actor: String!
permission: String!
# derived fields
action: Action!
}
type Block @entity {
id: ID!
number: BigInt!
date: String!
month: String!
year: String!
timestamp: BigInt! # seconds
transactions: [Transaction!]! @derivedFrom(field: "block")
}