-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
408 lines (408 loc) · 10.1 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
type Cash @entity {
id: ID!
name: Bytes
cashIssues: [CashIssues!] @derivedFrom(field: "currency")
cashDeposits: [CashDeposited!] @derivedFrom(field: "currency")
cashRedemptions: [CashRedemptions!] @derivedFrom(field: "currency")
cashTransfers: [CashTransfers!] @derivedFrom(field: "currency")
#bondIssues: [BondIssues!] @derivedFrom(field: "collateralCurrency")
#bondPurchases: [BondPurchases!] @derivedFrom(field: "paidInCurrency")
#bondRedemptions: [BondRedemptions!] @derivedFrom(field: "redemptionCurrency")
#BondLiquidations: [BondLiquidations!] @derivedFrom(field: "liquidationCurrency")
}
type User @entity {
id: ID!
client: Bytes
name: Bytes
accountid: Bytes
country: Bytes
status: Int
cashIssues: [CashIssues!] @derivedFrom(field:"party")
cashDeposits: [CashDeposited!] @derivedFrom(field: "party")
cashRedemptions: [CashRedemptions!] @derivedFrom(field: "party")
cashTransfers: [CashTransfers!] @derivedFrom(field: "transferor")
bondIssues: [BondIssues!] @derivedFrom(field: "issuer")
bondPurchases: [BondPurchases!] @derivedFrom(field: "purchaser")
bondRedemptions: [BondRedemptions!] @derivedFrom(field: "redeemer")
BondLiquidations: [BondLiquidations!] @derivedFrom(field: "liquidator")
offers: [Offers!] @derivedFrom(field: "offeredBy")
securitySeller: [Trades!] @derivedFrom(field: "transferor")
securityBuyer: [Trades!] @derivedFrom(field: "transferee")
primarySubscribers: [Subscribers!] @derivedFrom(field: "investor")
secondaryIssuers: [Investors!] @derivedFrom(field: "issuer")
secondaryInvestors: [Investors!] @derivedFrom(field: "investor")
tradeTransferor: [Traders!] @derivedFrom(field: "transferor")
tradeTransferee: [Traders!] @derivedFrom(field: "transferee")
liquidityProviders: [LiquidityProviders!] @derivedFrom(field: "owner")
allotedTo: [Allotments!] @derivedFrom(field: "investor")
refundedTo: [Refunds!] @derivedFrom(field: "investor")
liquidityProviderSettled: [Settlements!] @derivedFrom(field: "liquidityProvider")
issuerSettled: [Settlements!] @derivedFrom(field: "issuer")
manager: [Manager!] @derived(field: "manager")
submanager: [Manager!] @derivedFrom(field: "submanager")
shareholder: [RevenueShares!] @derivedFrom(field: "shareholder")
liquidityRequestor: [LiquidityTokenRequests!] @derivedFrom(field: "investor")
liquidityIssuedTo: [LiquidityTokenIssues!] @derivedFrom(field: "investor")
liquidityProvidedTo: [LiquidityOnPlatform!] @derivedFrom(field: "manager")
earnedByManager: [ManagerRoI!] @derivedFrom(field: "manager")
earnedByInvestor: [InvestorRoI!] @derivedFrom(field: "investor")
issuer: [Security!] @derivedFrom(field: "issuer")
}
type Token @entity {
id: ID!
token: Bytes
tokenName: Bytes
tokenType: Bytes
bondIssues: [BondIssues!]! @derivedFrom(field: "token")
bondPurchases: [BondPurchases!]! @derivedFrom(field: "token")
bondRedemptions: [BondRedemptions!]! @derivedFrom(field: "token")
bondLiquidations: [BondLiquidations!] @derivedFrom(field: "token")
}
type Platform @entity {
id: ID!
platform: Bytes!
name: Bytes!
feeCollections: [FeeCollections!] @derivedFrom(field: "platform")
investorReturns: [InvestorRoI!] @derivedFrom(field: "platform")
managerReturns: [ManagerRoI!] @derivedFrom(field: "platform")
platformReturns: [PlatformRoI!] @derivedFrom(field: "platform")
platformLiquidity: [LiquidityOnPlatform!] @derivedFrom(field: "platform")
}
type Currency @entity {
id: ID!
token: Bytes!
name: String!
liquidityTokenRequests: [LiquidityTokenRequests!] @derivedFrom(field: "token")
liquidityTokenIssues: [LiquidityTokenIssues!] @derivedFrom(field: "token")
liquidityOnPlatform: [LiquidityOnPlatform!] @derivedFrom(field: "token")
liquidityEarningsByManager: [ManagerRoI!] @derivedFrom(field: "token")
}
type Security @entity {
id: ID!
security: Bytes!
productCategory: Bytes!
issuer: User
isin: Bytes!
currency: Bytes!
restricted: Boolean!
issueManager: Bytes!
restrictions: [Bytes!]
country: Bytes
primarySubscribers: [Subscribers!] @derivedFrom(field: "security")
secondaryInvestors: [Investors!] @derivedFrom(field: "security")
marginTraders: [Traders!] @derivedFrom(field: "security")
trades: [Trades!] @derivedFrom(field: "security")
liquidityProviders: [LiquidityProviders!] @derivedFrom(field: "security")
liquidityOffered: [Offers!] @derivedFrom(field: "tomatch")
subscriptionsClosed: [Closures!] @derivedFrom(field: "security")
primaryAllotments: [Allotments!] @derivedFrom(field: "security")
primaryRefunds: [Refunds!] @derivedFrom(field: "security")
primarySettlements: [Settlements!] @derivedFrom(field: "security")
resolutions: [Resolutions!] @derivedFrom(field: "security")
snapshots : [Snapshots!] @derivedFrom(field: "security")
}
type CashDeposited @entity {
id: ID!
party: User!
currency: Cash!
amount : BigDecimal!
}
type CashIssues @entity {
id: ID!
party: User!
currency: Cash!
amount : BigDecimal!
balance: BigDecimal!
}
type CashRedemptions @entity {
id: ID!
party: User!
currency: Cash!
amount : BigDecimal!
redeemedFor: BigDecimal!
balance: BigDecimal!
}
type CashTransfers @entity {
id: ID!
transferor: User!
transferee: User!
currency: Cash!
amount : BigDecimal!
deposit: BigDecimal!
}
type BondIssues @entity {
id: ID!
issuer: User!
token: Token!
bondName: Bytes!
issuedAmount: BigDecimal!
collateralCurrency: Bytes!
collateralAmount : BigDecimal!
issueTime: Int!
}
type BondPurchases @entity {
id: ID!
purchaser: User!
token: Token!
bondName: Bytes!
purchaseValue: BigDecimal!
paidInCurrency: Bytes!
purchasedAmount : BigDecimal!
purchaseTime: Int!
}
type BondRedemptions @entity {
id: ID!
redeemer: User!
token: Token!
bondName: Bytes!
redeemedValue: BigDecimal!
redemptionCurrency: Bytes!
redemptionAmount : BigDecimal!
}
type BondLiquidations @entity {
id: ID!
liquidator: User!
token: Token!
liquidatedValue: BigDecimal!
bondName: Bytes!
liquidationCurrency: Bytes!
liquidatedAmount : BigDecimal!
}
type Manager @entity {
id: ID!
manager: User
submanager: User
role: Bytes!
country: Bytes
managerId: Bytes
}
type Offers @entity {
id: ID!
offeredBy: User
offered: Bytes!
tomatch: Security!
isin: Bytes!
amount: BigDecimal!
desired: BigDecimal!
minimum: BigDecimal!
orderSize: BigInt!
offeringDocs: String!
}
type Trades @entity {
id: ID!
poolid: Bytes!
transferor: User
transferee: User
unitsToTransfer: BigInt!
security: Security!
price: BigDecimal!
currency: Bytes!
settlementStatus: Bytes
amountPaid: BigDecimal
tradeRef: Bytes!
orderRef: Bytes!
tradingCommission: BigDecimal!
timestamp: Int!
}
type Subscribers @entity {
id: ID!
security: Security!
pool: Bytes!
investor: User
currency: Bytes!
cashSwapped: BigDecimal!
securitySwapped: BigDecimal!
timestamp: Int!
bought: Boolean!
}
type Investors @entity {
id: ID!
pool: Bytes!
security: Security!
issuer: User
investor: User
currency: Bytes!
amount: BigDecimal!
price: BigDecimal!
tradeRef : Bytes!
DPID : Bytes!
timestamp: Int!
}
type Traders @entity {
id: ID!
transferor: User
transferee: User
security: Security!
securityTraded: BigDecimal!
currency: Bytes!
cashTraded: BigDecimal!
orderRef: Bytes!
timestamp: Int!
}
type LiquidityProviders @entity {
id: ID!
platform: Bytes!
owner: User
security: Security!
currency: Bytes!
tokenOffered: BigDecimal!
underwritten: BigDecimal
earned: BigDecimal
}
type Closures @entity{
id: ID!
poolid: Bytes!
security: Security!
timestamp: Int!
}
type Allotments @entity{
id: ID!
poolid: Bytes!
investor: User
security: Security!
securitySubscribed: BigDecimal!
currency: Bytes!
allotedAmount: BigDecimal!
timestamp: Int!
}
type Refunds @entity{
id: ID!
poolid: Bytes!
investor: User
security: Security!
securitySubscribed: BigDecimal!
currency: Bytes!
refundAmount: BigDecimal!
timestamp: Int!
}
type Settlements @entity{
id: ID!
poolid: Bytes!
security: Security!
currency: Bytes!
liquidityProvider: User
underwritingFee: BigDecimal!
issuer: User
subscription: BigDecimal!
}
type MarginCollateral @entity{
id: ID!
action: Bytes!
user: User
currency: Bytes!
balance: BigDecimal!
time: Int
}
type MarginTradePnL @entity{
id: ID!
user: User
security: Security!
currency: Bytes!
financing: BigDecimal!
dividend: BigDecimal!
commission: BigDecimal!
settlementTime : Int
}
type Snapshots @entity{
id: ID!
security: Security!
oldTime: Int
newTime: Int
}
type Resolutions @entity{
id: ID!
security: Security!
recordDate: Int!
resolution: String!
voting: Boolean
}
type RevenueShares @entity{
id: ID!
shareholder: User!
shareholderType: Bytes!
token: Bytes!
amount: BigDecimal!
timestamp: Int!
}
type LiquidityTokenRequests @entity{
id: ID!
investor: User!
token: Currency!
tokenAmount: BigDecimal!
timestamp: Int!
}
type LiquidityTokenIssues @entity{
id: ID!
investor: User!
token: Currency!
tokenAmount: BigDecimal!
LPToIssue: BigDecimal!
}
type LiquidityOnPlatform @entity{
id: ID!
platform: Platform!
manager: User!
LPToken: BigDecimal!
token: Currency!
tokenAmount: BigDecimal!
}
type ManagerRoI @entity{
id: ID!
platform: Platform!
manager: User!
token: Currency!
distribution: BigDecimal!
}
type PlatformRoI @entity{
id: ID!
platform: Platform!
vitta: Bytes!
distribution: BigDecimal!
}
type InvestorRoI @entity{
id: ID!
platform: Platform!
investor: User!
vitta: Bytes!
prorataStake: BigDecimal!
timestamp: Int!
}
type FeeCollections @entity{
id: ID!
platform: Platform!
feeCollected: BigDecimal
timestamp: Int
}
type ManagersOnPlatform @entity{
id: ID!
platform: Platform!
manager: User!
}
type RWA @entity{
id: ID!
issuer: User!
asset: Security!
bond: Token!
apy: BigDecimal!
issuingDocs:String!
faceValue: BigDecimal!
}
type Collateral @entity{
id: ID!
issuer: User!
asset: Security!
collateral: Bytes!
amount: BigDecimal!
}
type CollaterizedLoan @entity{
id: ID!
borrower: User!
base: Bytes!
amount: BigDecimal!
}
type CollaterizedLoanRepayment @entity{
id: ID!
borrower: User!
base: Bytes!
amount: BigDecimal!
}