-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.graphql
214 lines (197 loc) · 4.62 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
enum FungibleTokenType {
External
Point
Base
}
type FungibleTokenMetadata @entity {
id: ID!
URI: String!
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
# Performant many to many relationship of App and fungibleToken, see https://thegraph.com/docs/en/developing/creating-a-subgraph/#example-1
type AppFungibleToken @entity {
id: ID!
app: App!
token: FungibleToken!
}
type FungibleToken @entity {
id: ID!
name: String!
owner: User!
symbol: String!
decimals: Int!
metadata: FungibleTokenMetadata
tokenType: FungibleTokenType!
"""
DEPRECATED: The `app` field has been deprecated as app-token is a many to many relationship, please use `apps` instead.
"""
app: App @deprecated(reason: "The `app` field has been deprecated as app-token is a many to many relationship, please use `apps` instead.")
apps: [AppFungibleToken!] @derivedFrom(field: "token")
totalSupply: BigInt!
burntSupply: BigInt!
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type FungibleTokenBalance @entity {
id: ID!
user: User!
token: FungibleToken!
balance: BigInt!
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type App @entity {
id: ID!
name: String!
metadata: AppMetadata
owner: User!
xpToken: FungibleToken
badges: [Badge!] @derivedFrom(field: "app")
badgeCount: BigInt!
badgesAwarded: BigInt!
tokens: [AppFungibleToken!] @derivedFrom(field: "app")
requiredTokenBalance: [RequiredTokenBalance!] @derivedFrom(field: "app")
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type AppMetadata @entity {
id: ID!
name: String!
description: String!
URI: String!
createdAt: BigInt!
createdAtBlock: BigInt!
}
type RequiredTokenBalance @entity {
id: ID!
app: App!
token: FungibleToken!
balance: BigInt!
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type BadgeToken @entity {
id: ID!
tokenId: BigInt!
badge: Badge!
metadataURI: String
owner: User
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type Badge @entity {
id: ID!
name: String!
symbol: String!
metadataURI: String
tokens: [BadgeToken!] @derivedFrom(field: "badge")
app: App!
royaltyBps: BigInt!
royaltyRecipient: Bytes!
totalAwarded: BigInt!
totalAvailable: BigInt!
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type User @entity {
id: ID!
tokenBalances: [FungibleTokenBalance!] @derivedFrom(field: "user")
collectedBadges: [BadgeToken!] @derivedFrom(field: "owner")
createdAt: BigInt!
createdAtBlock: BigInt!
updatedAt: BigInt!
updatedAtBlock: BigInt!
}
type Reward @entity (immutable: true) {
id: ID!
app: App!
rewardId: String!
rewardType: String!
metadataURI: String!
user: User!
token: FungibleToken
tokenAmount: BigInt!
badge: Badge
badgeTokens: [BadgeToken!]
badgeCount: Int!
transactionHash: String!
createdAt: BigInt!
createdAtBlock: BigInt!
}
"""
DEPRECATED: The `Action` entity has been deprecated as please query the `Reward` entity with `rewardType: "ACTION"` instead.
"""
type Action @entity {
id: ID!
metadata: ActionMetadata
app: App
user: User!
xp_rewarded: BigInt!
createdAt: BigInt!
createdAtBlock: BigInt!
}
"""
DEPRECATED: The `ActionMetadata` entity has been deprecated as please query the `Reward` with `rewardType: "ACTION"` instead.
"""
type ActionMetadata @entity {
id: ID!
name: String
URI: String!
}
"""
DEPRECATED: The `MissionFungibleToken` entity has been deprecated as please query the `Reward` entity instead.
"""
type MissionFungibleToken @entity {
id: ID!
token: FungibleToken!
mission: Mission!
amount_rewarded: BigInt!
}
"""
DEPRECATED: The `MissionMetadata` entity has been deprecated as please query the `Reward` entity with `rewardType: "MISSION"` instead.
"""
type MissionMetadata @entity {
id: ID!
name: String
URI: String!
}
"""
DEPRECATED: The `Mission` entity has been deprecated as please query the `Reward` entity with `rewardType: "MISSION"` instead.
"""
type Mission @entity {
id: ID!
metadata: MissionMetadata
app: App
user: User
xp_rewarded: BigInt!
badges: [BadgeToken!]!
tokens: [MissionFungibleToken!] @derivedFrom(field: "mission")
createdAt: BigInt!
createdAtBlock: BigInt!
}
type Charge @entity(immutable: true) {
id: ID!
app: App!
user: User!
token: FungibleToken!
amount: BigInt!
chargeId: String!
chargeType: String!
createdAt: BigInt!
createdAtBlock: BigInt!
}