-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathschema.graphql
152 lines (98 loc) · 2.9 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
type collection @entity {
" The address of the collection "
id: ID!
" The name of the collection "
name: String
" Total sales "
totalSales: Int
" Total volume "
totalVolume: BigDecimal!
" Top Sale ever "
topSale: BigDecimal!
" Daily info about the collection "
dailyCollectionSnapshot: [dailyCollectionSnapshot!]! @derivedFrom(field: "collection")
" Weekly info about the collection "
weeklyCollectionSnapshot: [weeklyCollectionSnapshot!]! @derivedFrom(field: "collection")
" Monthly info about the collection "
monthlyCollectionSnapshot: [monthlyCollectionSnapshot!]! @derivedFrom(field: "collection")
}
type token @entity {
" The collection addrress - The token id "
id: ID!
" The id of the NFT"
identifier: BigInt
" The collection address "
collection: collection!
" The NFT last price "
lastPrice: BigDecimal!
" The NFT top sale ever "
topSale: BigDecimal!
}
type transfer @entity {
" The hash of the tx "
id: ID!
" The collection address "
collection: collection!
" The collection addrress - The token id "
token: token!
" The id of the NFT"
tokenId: BigInt
" Block number "
blockNum: Int
" The sender address "
senderAddress: Bytes
" The receiver address "
receiverAddress: Bytes
" The amount of ETH paid"
amount: BigDecimal
" The marketplace"
platform: String
}
type dailyCollectionSnapshot @entity {
" The collection address - The day "
id: ID!
" The timestamp of the block "
timestamp: Int
" The collection address "
collection: collection!
" The daily volume "
dailyVolume: BigDecimal!
" Number of daily transactions "
dailyTransactions: Int
" Daily top sales "
topSale: BigDecimal!
" Daily bottom sales "
bottomSale: BigDecimal!
}
type weeklyCollectionSnapshot @entity {
" The collection address - The week "
id: ID!
" The timestamp of the block "
timestamp: Int!
" The collection address "
collection: collection!
" The weekly volume "
weeklyVolume: BigDecimal!
" Number of weekly transactions "
weeklyTransactions: Int
" weekly top sales "
topSale: BigDecimal!
" weekly bottom sales "
bottomSale: BigDecimal!
}
type monthlyCollectionSnapshot @entity {
" The collection address - The month "
id: ID!
" The timestamp of the block "
timestamp: Int!
" The collection address "
collection: collection!
" The monthly volume "
monthlyVolume: BigDecimal!
" Number of monthly transactions "
monthlyTransactions: Int
" monthly top sales "
topSale: BigDecimal!
" monthly bottom sales "
bottomSale: BigDecimal!
}