@0xobelisk/graphql-server 1.2.0-pre.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +8 -0
- package/DUAL_POOL_CONFIG.md +188 -0
- package/Dockerfile +35 -0
- package/LICENSE +92 -0
- package/README.md +487 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +206 -0
- package/dist/cli.js.map +1 -0
- package/dist/config/subscription-config.d.ts +80 -0
- package/dist/config/subscription-config.d.ts.map +1 -0
- package/dist/config/subscription-config.js +158 -0
- package/dist/config/subscription-config.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -0
- package/dist/plugins/all-fields-filter-plugin.d.ts +4 -0
- package/dist/plugins/all-fields-filter-plugin.d.ts.map +1 -0
- package/dist/plugins/all-fields-filter-plugin.js +132 -0
- package/dist/plugins/all-fields-filter-plugin.js.map +1 -0
- package/dist/plugins/database-introspector.d.ts +23 -0
- package/dist/plugins/database-introspector.d.ts.map +1 -0
- package/dist/plugins/database-introspector.js +96 -0
- package/dist/plugins/database-introspector.js.map +1 -0
- package/dist/plugins/enhanced-playground.d.ts +9 -0
- package/dist/plugins/enhanced-playground.d.ts.map +1 -0
- package/dist/plugins/enhanced-playground.js +113 -0
- package/dist/plugins/enhanced-playground.js.map +1 -0
- package/dist/plugins/enhanced-server-manager.d.ts +29 -0
- package/dist/plugins/enhanced-server-manager.d.ts.map +1 -0
- package/dist/plugins/enhanced-server-manager.js +262 -0
- package/dist/plugins/enhanced-server-manager.js.map +1 -0
- package/dist/plugins/index.d.ts +9 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/plugins/index.js +26 -0
- package/dist/plugins/index.js.map +1 -0
- package/dist/plugins/postgraphile-config.d.ts +94 -0
- package/dist/plugins/postgraphile-config.d.ts.map +1 -0
- package/dist/plugins/postgraphile-config.js +138 -0
- package/dist/plugins/postgraphile-config.js.map +1 -0
- package/dist/plugins/query-filter.d.ts +4 -0
- package/dist/plugins/query-filter.d.ts.map +1 -0
- package/dist/plugins/query-filter.js +42 -0
- package/dist/plugins/query-filter.js.map +1 -0
- package/dist/plugins/simple-naming.d.ts +4 -0
- package/dist/plugins/simple-naming.d.ts.map +1 -0
- package/dist/plugins/simple-naming.js +79 -0
- package/dist/plugins/simple-naming.js.map +1 -0
- package/dist/plugins/welcome-page.d.ts +11 -0
- package/dist/plugins/welcome-page.d.ts.map +1 -0
- package/dist/plugins/welcome-page.js +203 -0
- package/dist/plugins/welcome-page.js.map +1 -0
- package/dist/server.d.ts +21 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +265 -0
- package/dist/server.js.map +1 -0
- package/dist/universal-subscriptions.d.ts +32 -0
- package/dist/universal-subscriptions.d.ts.map +1 -0
- package/dist/universal-subscriptions.js +318 -0
- package/dist/universal-subscriptions.js.map +1 -0
- package/dist/utils/logger/index.d.ts +80 -0
- package/dist/utils/logger/index.d.ts.map +1 -0
- package/dist/utils/logger/index.js +230 -0
- package/dist/utils/logger/index.js.map +1 -0
- package/docker-compose.yml +46 -0
- package/eslint.config.mjs +3 -0
- package/package.json +78 -0
- package/src/cli.ts +232 -0
- package/src/config/subscription-config.ts +243 -0
- package/src/index.ts +11 -0
- package/src/plugins/README.md +138 -0
- package/src/plugins/all-fields-filter-plugin.ts +158 -0
- package/src/plugins/database-introspector.ts +126 -0
- package/src/plugins/enhanced-playground.ts +121 -0
- package/src/plugins/enhanced-server-manager.ts +314 -0
- package/src/plugins/index.ts +9 -0
- package/src/plugins/postgraphile-config.ts +182 -0
- package/src/plugins/query-filter.ts +50 -0
- package/src/plugins/simple-naming.ts +105 -0
- package/src/plugins/welcome-page.ts +218 -0
- package/src/server.ts +324 -0
- package/src/universal-subscriptions.ts +397 -0
- package/src/utils/logger/README.md +209 -0
- package/src/utils/logger/index.ts +275 -0
- package/sui-indexer-schema.graphql +3691 -0
- package/tsconfig.json +28 -0
|
@@ -0,0 +1,3691 @@
|
|
|
1
|
+
"""The root query type which gives access points into the data universe."""
|
|
2
|
+
type Query implements Node {
|
|
3
|
+
"""
|
|
4
|
+
Exposes the root query type nested one level down. This is helpful for Relay 1
|
|
5
|
+
which can only query top level fields if they are in a particular form.
|
|
6
|
+
"""
|
|
7
|
+
query: Query!
|
|
8
|
+
|
|
9
|
+
"""
|
|
10
|
+
The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`.
|
|
11
|
+
"""
|
|
12
|
+
nodeId: ID!
|
|
13
|
+
|
|
14
|
+
"""Fetches an object given its globally unique `ID`."""
|
|
15
|
+
node(
|
|
16
|
+
"""The globally unique `ID`."""
|
|
17
|
+
nodeId: ID!
|
|
18
|
+
): Node
|
|
19
|
+
|
|
20
|
+
"""Reads and enables pagination through a set of `StoreAssetAccount`."""
|
|
21
|
+
assetAccounts(
|
|
22
|
+
"""Only read the first `n` values of the set."""
|
|
23
|
+
first: Int
|
|
24
|
+
|
|
25
|
+
"""Only read the last `n` values of the set."""
|
|
26
|
+
last: Int
|
|
27
|
+
|
|
28
|
+
"""
|
|
29
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
30
|
+
based pagination. May not be used with `last`.
|
|
31
|
+
"""
|
|
32
|
+
offset: Int
|
|
33
|
+
|
|
34
|
+
"""Read all values in the set before (above) this cursor."""
|
|
35
|
+
before: Cursor
|
|
36
|
+
|
|
37
|
+
"""Read all values in the set after (below) this cursor."""
|
|
38
|
+
after: Cursor
|
|
39
|
+
|
|
40
|
+
"""The method to use when ordering `StoreAssetAccount`."""
|
|
41
|
+
orderBy: [StoreAssetAccountsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
42
|
+
|
|
43
|
+
"""
|
|
44
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
45
|
+
"""
|
|
46
|
+
condition: StoreAssetAccountCondition
|
|
47
|
+
|
|
48
|
+
"""
|
|
49
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
50
|
+
"""
|
|
51
|
+
filter: StoreAssetAccountFilter
|
|
52
|
+
): StoreAssetAccountsConnection
|
|
53
|
+
|
|
54
|
+
"""Reads and enables pagination through a set of `StoreAssetHolder`."""
|
|
55
|
+
assetHolders(
|
|
56
|
+
"""Only read the first `n` values of the set."""
|
|
57
|
+
first: Int
|
|
58
|
+
|
|
59
|
+
"""Only read the last `n` values of the set."""
|
|
60
|
+
last: Int
|
|
61
|
+
|
|
62
|
+
"""
|
|
63
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
64
|
+
based pagination. May not be used with `last`.
|
|
65
|
+
"""
|
|
66
|
+
offset: Int
|
|
67
|
+
|
|
68
|
+
"""Read all values in the set before (above) this cursor."""
|
|
69
|
+
before: Cursor
|
|
70
|
+
|
|
71
|
+
"""Read all values in the set after (below) this cursor."""
|
|
72
|
+
after: Cursor
|
|
73
|
+
|
|
74
|
+
"""The method to use when ordering `StoreAssetHolder`."""
|
|
75
|
+
orderBy: [StoreAssetHoldersOrderBy!] = [PRIMARY_KEY_ASC]
|
|
76
|
+
|
|
77
|
+
"""
|
|
78
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
79
|
+
"""
|
|
80
|
+
condition: StoreAssetHolderCondition
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
84
|
+
"""
|
|
85
|
+
filter: StoreAssetHolderFilter
|
|
86
|
+
): StoreAssetHoldersConnection
|
|
87
|
+
|
|
88
|
+
"""Reads and enables pagination through a set of `StoreAssetMetadatum`."""
|
|
89
|
+
assetMetadata(
|
|
90
|
+
"""Only read the first `n` values of the set."""
|
|
91
|
+
first: Int
|
|
92
|
+
|
|
93
|
+
"""Only read the last `n` values of the set."""
|
|
94
|
+
last: Int
|
|
95
|
+
|
|
96
|
+
"""
|
|
97
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
98
|
+
based pagination. May not be used with `last`.
|
|
99
|
+
"""
|
|
100
|
+
offset: Int
|
|
101
|
+
|
|
102
|
+
"""Read all values in the set before (above) this cursor."""
|
|
103
|
+
before: Cursor
|
|
104
|
+
|
|
105
|
+
"""Read all values in the set after (below) this cursor."""
|
|
106
|
+
after: Cursor
|
|
107
|
+
|
|
108
|
+
"""The method to use when ordering `StoreAssetMetadatum`."""
|
|
109
|
+
orderBy: [StoreAssetMetadataOrderBy!] = [PRIMARY_KEY_ASC]
|
|
110
|
+
|
|
111
|
+
"""
|
|
112
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
113
|
+
"""
|
|
114
|
+
condition: StoreAssetMetadatumCondition
|
|
115
|
+
|
|
116
|
+
"""
|
|
117
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
118
|
+
"""
|
|
119
|
+
filter: StoreAssetMetadatumFilter
|
|
120
|
+
): StoreAssetMetadataConnection
|
|
121
|
+
|
|
122
|
+
"""Reads and enables pagination through a set of `StoreAssetPool`."""
|
|
123
|
+
assetPools(
|
|
124
|
+
"""Only read the first `n` values of the set."""
|
|
125
|
+
first: Int
|
|
126
|
+
|
|
127
|
+
"""Only read the last `n` values of the set."""
|
|
128
|
+
last: Int
|
|
129
|
+
|
|
130
|
+
"""
|
|
131
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
132
|
+
based pagination. May not be used with `last`.
|
|
133
|
+
"""
|
|
134
|
+
offset: Int
|
|
135
|
+
|
|
136
|
+
"""Read all values in the set before (above) this cursor."""
|
|
137
|
+
before: Cursor
|
|
138
|
+
|
|
139
|
+
"""Read all values in the set after (below) this cursor."""
|
|
140
|
+
after: Cursor
|
|
141
|
+
|
|
142
|
+
"""The method to use when ordering `StoreAssetPool`."""
|
|
143
|
+
orderBy: [StoreAssetPoolsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
144
|
+
|
|
145
|
+
"""
|
|
146
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
147
|
+
"""
|
|
148
|
+
condition: StoreAssetPoolCondition
|
|
149
|
+
|
|
150
|
+
"""
|
|
151
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
152
|
+
"""
|
|
153
|
+
filter: StoreAssetPoolFilter
|
|
154
|
+
): StoreAssetPoolsConnection
|
|
155
|
+
|
|
156
|
+
"""Reads and enables pagination through a set of `StoreAssetSupply`."""
|
|
157
|
+
assetSupplies(
|
|
158
|
+
"""Only read the first `n` values of the set."""
|
|
159
|
+
first: Int
|
|
160
|
+
|
|
161
|
+
"""Only read the last `n` values of the set."""
|
|
162
|
+
last: Int
|
|
163
|
+
|
|
164
|
+
"""
|
|
165
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
166
|
+
based pagination. May not be used with `last`.
|
|
167
|
+
"""
|
|
168
|
+
offset: Int
|
|
169
|
+
|
|
170
|
+
"""Read all values in the set before (above) this cursor."""
|
|
171
|
+
before: Cursor
|
|
172
|
+
|
|
173
|
+
"""Read all values in the set after (below) this cursor."""
|
|
174
|
+
after: Cursor
|
|
175
|
+
|
|
176
|
+
"""The method to use when ordering `StoreAssetSupply`."""
|
|
177
|
+
orderBy: [StoreAssetSuppliesOrderBy!] = [PRIMARY_KEY_ASC]
|
|
178
|
+
|
|
179
|
+
"""
|
|
180
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
181
|
+
"""
|
|
182
|
+
condition: StoreAssetSupplyCondition
|
|
183
|
+
|
|
184
|
+
"""
|
|
185
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
186
|
+
"""
|
|
187
|
+
filter: StoreAssetSupplyFilter
|
|
188
|
+
): StoreAssetSuppliesConnection
|
|
189
|
+
|
|
190
|
+
"""Reads and enables pagination through a set of `StoreAssetSwap`."""
|
|
191
|
+
assetSwaps(
|
|
192
|
+
"""Only read the first `n` values of the set."""
|
|
193
|
+
first: Int
|
|
194
|
+
|
|
195
|
+
"""Only read the last `n` values of the set."""
|
|
196
|
+
last: Int
|
|
197
|
+
|
|
198
|
+
"""
|
|
199
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
200
|
+
based pagination. May not be used with `last`.
|
|
201
|
+
"""
|
|
202
|
+
offset: Int
|
|
203
|
+
|
|
204
|
+
"""Read all values in the set before (above) this cursor."""
|
|
205
|
+
before: Cursor
|
|
206
|
+
|
|
207
|
+
"""Read all values in the set after (below) this cursor."""
|
|
208
|
+
after: Cursor
|
|
209
|
+
|
|
210
|
+
"""The method to use when ordering `StoreAssetSwap`."""
|
|
211
|
+
orderBy: [StoreAssetSwapsOrderBy!] = [NATURAL]
|
|
212
|
+
|
|
213
|
+
"""
|
|
214
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
215
|
+
"""
|
|
216
|
+
condition: StoreAssetSwapCondition
|
|
217
|
+
|
|
218
|
+
"""
|
|
219
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
220
|
+
"""
|
|
221
|
+
filter: StoreAssetSwapFilter
|
|
222
|
+
): StoreAssetSwapsConnection
|
|
223
|
+
|
|
224
|
+
"""Reads and enables pagination through a set of `StoreAssetTransfer`."""
|
|
225
|
+
assetTransfers(
|
|
226
|
+
"""Only read the first `n` values of the set."""
|
|
227
|
+
first: Int
|
|
228
|
+
|
|
229
|
+
"""Only read the last `n` values of the set."""
|
|
230
|
+
last: Int
|
|
231
|
+
|
|
232
|
+
"""
|
|
233
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
234
|
+
based pagination. May not be used with `last`.
|
|
235
|
+
"""
|
|
236
|
+
offset: Int
|
|
237
|
+
|
|
238
|
+
"""Read all values in the set before (above) this cursor."""
|
|
239
|
+
before: Cursor
|
|
240
|
+
|
|
241
|
+
"""Read all values in the set after (below) this cursor."""
|
|
242
|
+
after: Cursor
|
|
243
|
+
|
|
244
|
+
"""The method to use when ordering `StoreAssetTransfer`."""
|
|
245
|
+
orderBy: [StoreAssetTransfersOrderBy!] = [NATURAL]
|
|
246
|
+
|
|
247
|
+
"""
|
|
248
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
249
|
+
"""
|
|
250
|
+
condition: StoreAssetTransferCondition
|
|
251
|
+
|
|
252
|
+
"""
|
|
253
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
254
|
+
"""
|
|
255
|
+
filter: StoreAssetTransferFilter
|
|
256
|
+
): StoreAssetTransfersConnection
|
|
257
|
+
|
|
258
|
+
"""Reads and enables pagination through a set of `StoreAssetUnwrap`."""
|
|
259
|
+
assetUnwraps(
|
|
260
|
+
"""Only read the first `n` values of the set."""
|
|
261
|
+
first: Int
|
|
262
|
+
|
|
263
|
+
"""Only read the last `n` values of the set."""
|
|
264
|
+
last: Int
|
|
265
|
+
|
|
266
|
+
"""
|
|
267
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
268
|
+
based pagination. May not be used with `last`.
|
|
269
|
+
"""
|
|
270
|
+
offset: Int
|
|
271
|
+
|
|
272
|
+
"""Read all values in the set before (above) this cursor."""
|
|
273
|
+
before: Cursor
|
|
274
|
+
|
|
275
|
+
"""Read all values in the set after (below) this cursor."""
|
|
276
|
+
after: Cursor
|
|
277
|
+
|
|
278
|
+
"""The method to use when ordering `StoreAssetUnwrap`."""
|
|
279
|
+
orderBy: [StoreAssetUnwrapsOrderBy!] = [NATURAL]
|
|
280
|
+
|
|
281
|
+
"""
|
|
282
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
283
|
+
"""
|
|
284
|
+
condition: StoreAssetUnwrapCondition
|
|
285
|
+
|
|
286
|
+
"""
|
|
287
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
288
|
+
"""
|
|
289
|
+
filter: StoreAssetUnwrapFilter
|
|
290
|
+
): StoreAssetUnwrapsConnection
|
|
291
|
+
|
|
292
|
+
"""Reads and enables pagination through a set of `StoreAssetWrap`."""
|
|
293
|
+
assetWraps(
|
|
294
|
+
"""Only read the first `n` values of the set."""
|
|
295
|
+
first: Int
|
|
296
|
+
|
|
297
|
+
"""Only read the last `n` values of the set."""
|
|
298
|
+
last: Int
|
|
299
|
+
|
|
300
|
+
"""
|
|
301
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
302
|
+
based pagination. May not be used with `last`.
|
|
303
|
+
"""
|
|
304
|
+
offset: Int
|
|
305
|
+
|
|
306
|
+
"""Read all values in the set before (above) this cursor."""
|
|
307
|
+
before: Cursor
|
|
308
|
+
|
|
309
|
+
"""Read all values in the set after (below) this cursor."""
|
|
310
|
+
after: Cursor
|
|
311
|
+
|
|
312
|
+
"""The method to use when ordering `StoreAssetWrap`."""
|
|
313
|
+
orderBy: [StoreAssetWrapsOrderBy!] = [NATURAL]
|
|
314
|
+
|
|
315
|
+
"""
|
|
316
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
317
|
+
"""
|
|
318
|
+
condition: StoreAssetWrapCondition
|
|
319
|
+
|
|
320
|
+
"""
|
|
321
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
322
|
+
"""
|
|
323
|
+
filter: StoreAssetWrapFilter
|
|
324
|
+
): StoreAssetWrapsConnection
|
|
325
|
+
|
|
326
|
+
"""Reads and enables pagination through a set of `StoreAssetWrapper`."""
|
|
327
|
+
assetWrappers(
|
|
328
|
+
"""Only read the first `n` values of the set."""
|
|
329
|
+
first: Int
|
|
330
|
+
|
|
331
|
+
"""Only read the last `n` values of the set."""
|
|
332
|
+
last: Int
|
|
333
|
+
|
|
334
|
+
"""
|
|
335
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
336
|
+
based pagination. May not be used with `last`.
|
|
337
|
+
"""
|
|
338
|
+
offset: Int
|
|
339
|
+
|
|
340
|
+
"""Read all values in the set before (above) this cursor."""
|
|
341
|
+
before: Cursor
|
|
342
|
+
|
|
343
|
+
"""Read all values in the set after (below) this cursor."""
|
|
344
|
+
after: Cursor
|
|
345
|
+
|
|
346
|
+
"""The method to use when ordering `StoreAssetWrapper`."""
|
|
347
|
+
orderBy: [StoreAssetWrappersOrderBy!] = [PRIMARY_KEY_ASC]
|
|
348
|
+
|
|
349
|
+
"""
|
|
350
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
351
|
+
"""
|
|
352
|
+
condition: StoreAssetWrapperCondition
|
|
353
|
+
|
|
354
|
+
"""
|
|
355
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
356
|
+
"""
|
|
357
|
+
filter: StoreAssetWrapperFilter
|
|
358
|
+
): StoreAssetWrappersConnection
|
|
359
|
+
|
|
360
|
+
"""Reads and enables pagination through a set of `StoreDappFeeConfig`."""
|
|
361
|
+
dappFeeConfigs(
|
|
362
|
+
"""Only read the first `n` values of the set."""
|
|
363
|
+
first: Int
|
|
364
|
+
|
|
365
|
+
"""Only read the last `n` values of the set."""
|
|
366
|
+
last: Int
|
|
367
|
+
|
|
368
|
+
"""
|
|
369
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
370
|
+
based pagination. May not be used with `last`.
|
|
371
|
+
"""
|
|
372
|
+
offset: Int
|
|
373
|
+
|
|
374
|
+
"""Read all values in the set before (above) this cursor."""
|
|
375
|
+
before: Cursor
|
|
376
|
+
|
|
377
|
+
"""Read all values in the set after (below) this cursor."""
|
|
378
|
+
after: Cursor
|
|
379
|
+
|
|
380
|
+
"""The method to use when ordering `StoreDappFeeConfig`."""
|
|
381
|
+
orderBy: [StoreDappFeeConfigsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
382
|
+
|
|
383
|
+
"""
|
|
384
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
385
|
+
"""
|
|
386
|
+
condition: StoreDappFeeConfigCondition
|
|
387
|
+
|
|
388
|
+
"""
|
|
389
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
390
|
+
"""
|
|
391
|
+
filter: StoreDappFeeConfigFilter
|
|
392
|
+
): StoreDappFeeConfigsConnection
|
|
393
|
+
|
|
394
|
+
"""Reads and enables pagination through a set of `StoreDappFeeState`."""
|
|
395
|
+
dappFeeStates(
|
|
396
|
+
"""Only read the first `n` values of the set."""
|
|
397
|
+
first: Int
|
|
398
|
+
|
|
399
|
+
"""Only read the last `n` values of the set."""
|
|
400
|
+
last: Int
|
|
401
|
+
|
|
402
|
+
"""
|
|
403
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
404
|
+
based pagination. May not be used with `last`.
|
|
405
|
+
"""
|
|
406
|
+
offset: Int
|
|
407
|
+
|
|
408
|
+
"""Read all values in the set before (above) this cursor."""
|
|
409
|
+
before: Cursor
|
|
410
|
+
|
|
411
|
+
"""Read all values in the set after (below) this cursor."""
|
|
412
|
+
after: Cursor
|
|
413
|
+
|
|
414
|
+
"""The method to use when ordering `StoreDappFeeState`."""
|
|
415
|
+
orderBy: [StoreDappFeeStatesOrderBy!] = [PRIMARY_KEY_ASC]
|
|
416
|
+
|
|
417
|
+
"""
|
|
418
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
419
|
+
"""
|
|
420
|
+
condition: StoreDappFeeStateCondition
|
|
421
|
+
|
|
422
|
+
"""
|
|
423
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
424
|
+
"""
|
|
425
|
+
filter: StoreDappFeeStateFilter
|
|
426
|
+
): StoreDappFeeStatesConnection
|
|
427
|
+
|
|
428
|
+
"""Reads and enables pagination through a set of `StoreDappMetadatum`."""
|
|
429
|
+
dappMetadata(
|
|
430
|
+
"""Only read the first `n` values of the set."""
|
|
431
|
+
first: Int
|
|
432
|
+
|
|
433
|
+
"""Only read the last `n` values of the set."""
|
|
434
|
+
last: Int
|
|
435
|
+
|
|
436
|
+
"""
|
|
437
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
438
|
+
based pagination. May not be used with `last`.
|
|
439
|
+
"""
|
|
440
|
+
offset: Int
|
|
441
|
+
|
|
442
|
+
"""Read all values in the set before (above) this cursor."""
|
|
443
|
+
before: Cursor
|
|
444
|
+
|
|
445
|
+
"""Read all values in the set after (below) this cursor."""
|
|
446
|
+
after: Cursor
|
|
447
|
+
|
|
448
|
+
"""The method to use when ordering `StoreDappMetadatum`."""
|
|
449
|
+
orderBy: [StoreDappMetadataOrderBy!] = [PRIMARY_KEY_ASC]
|
|
450
|
+
|
|
451
|
+
"""
|
|
452
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
453
|
+
"""
|
|
454
|
+
condition: StoreDappMetadatumCondition
|
|
455
|
+
|
|
456
|
+
"""
|
|
457
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
458
|
+
"""
|
|
459
|
+
filter: StoreDappMetadatumFilter
|
|
460
|
+
): StoreDappMetadataConnection
|
|
461
|
+
|
|
462
|
+
"""Reads and enables pagination through a set of `StoreDappProxy`."""
|
|
463
|
+
dappProxies(
|
|
464
|
+
"""Only read the first `n` values of the set."""
|
|
465
|
+
first: Int
|
|
466
|
+
|
|
467
|
+
"""Only read the last `n` values of the set."""
|
|
468
|
+
last: Int
|
|
469
|
+
|
|
470
|
+
"""
|
|
471
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
472
|
+
based pagination. May not be used with `last`.
|
|
473
|
+
"""
|
|
474
|
+
offset: Int
|
|
475
|
+
|
|
476
|
+
"""Read all values in the set before (above) this cursor."""
|
|
477
|
+
before: Cursor
|
|
478
|
+
|
|
479
|
+
"""Read all values in the set after (below) this cursor."""
|
|
480
|
+
after: Cursor
|
|
481
|
+
|
|
482
|
+
"""The method to use when ordering `StoreDappProxy`."""
|
|
483
|
+
orderBy: [StoreDappProxiesOrderBy!] = [PRIMARY_KEY_ASC]
|
|
484
|
+
|
|
485
|
+
"""
|
|
486
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
487
|
+
"""
|
|
488
|
+
condition: StoreDappProxyCondition
|
|
489
|
+
|
|
490
|
+
"""
|
|
491
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
492
|
+
"""
|
|
493
|
+
filter: StoreDappProxyFilter
|
|
494
|
+
): StoreDappProxiesConnection
|
|
495
|
+
|
|
496
|
+
"""Reads and enables pagination through a set of `StoreDubheAssetId`."""
|
|
497
|
+
dubheAssetIds(
|
|
498
|
+
"""Only read the first `n` values of the set."""
|
|
499
|
+
first: Int
|
|
500
|
+
|
|
501
|
+
"""Only read the last `n` values of the set."""
|
|
502
|
+
last: Int
|
|
503
|
+
|
|
504
|
+
"""
|
|
505
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
506
|
+
based pagination. May not be used with `last`.
|
|
507
|
+
"""
|
|
508
|
+
offset: Int
|
|
509
|
+
|
|
510
|
+
"""Read all values in the set before (above) this cursor."""
|
|
511
|
+
before: Cursor
|
|
512
|
+
|
|
513
|
+
"""Read all values in the set after (below) this cursor."""
|
|
514
|
+
after: Cursor
|
|
515
|
+
|
|
516
|
+
"""The method to use when ordering `StoreDubheAssetId`."""
|
|
517
|
+
orderBy: [StoreDubheAssetIdsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
518
|
+
|
|
519
|
+
"""
|
|
520
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
521
|
+
"""
|
|
522
|
+
condition: StoreDubheAssetIdCondition
|
|
523
|
+
|
|
524
|
+
"""
|
|
525
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
526
|
+
"""
|
|
527
|
+
filter: StoreDubheAssetIdFilter
|
|
528
|
+
): StoreDubheAssetIdsConnection
|
|
529
|
+
|
|
530
|
+
"""Reads and enables pagination through a set of `StoreDubheConfig`."""
|
|
531
|
+
dubheConfigs(
|
|
532
|
+
"""Only read the first `n` values of the set."""
|
|
533
|
+
first: Int
|
|
534
|
+
|
|
535
|
+
"""Only read the last `n` values of the set."""
|
|
536
|
+
last: Int
|
|
537
|
+
|
|
538
|
+
"""
|
|
539
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
540
|
+
based pagination. May not be used with `last`.
|
|
541
|
+
"""
|
|
542
|
+
offset: Int
|
|
543
|
+
|
|
544
|
+
"""Read all values in the set before (above) this cursor."""
|
|
545
|
+
before: Cursor
|
|
546
|
+
|
|
547
|
+
"""Read all values in the set after (below) this cursor."""
|
|
548
|
+
after: Cursor
|
|
549
|
+
|
|
550
|
+
"""The method to use when ordering `StoreDubheConfig`."""
|
|
551
|
+
orderBy: [StoreDubheConfigsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
552
|
+
|
|
553
|
+
"""
|
|
554
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
555
|
+
"""
|
|
556
|
+
condition: StoreDubheConfigCondition
|
|
557
|
+
|
|
558
|
+
"""
|
|
559
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
560
|
+
"""
|
|
561
|
+
filter: StoreDubheConfigFilter
|
|
562
|
+
): StoreDubheConfigsConnection
|
|
563
|
+
|
|
564
|
+
"""Reads and enables pagination through a set of `StoreSuiAssetId`."""
|
|
565
|
+
suiAssetIds(
|
|
566
|
+
"""Only read the first `n` values of the set."""
|
|
567
|
+
first: Int
|
|
568
|
+
|
|
569
|
+
"""Only read the last `n` values of the set."""
|
|
570
|
+
last: Int
|
|
571
|
+
|
|
572
|
+
"""
|
|
573
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
574
|
+
based pagination. May not be used with `last`.
|
|
575
|
+
"""
|
|
576
|
+
offset: Int
|
|
577
|
+
|
|
578
|
+
"""Read all values in the set before (above) this cursor."""
|
|
579
|
+
before: Cursor
|
|
580
|
+
|
|
581
|
+
"""Read all values in the set after (below) this cursor."""
|
|
582
|
+
after: Cursor
|
|
583
|
+
|
|
584
|
+
"""The method to use when ordering `StoreSuiAssetId`."""
|
|
585
|
+
orderBy: [StoreSuiAssetIdsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
586
|
+
|
|
587
|
+
"""
|
|
588
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
589
|
+
"""
|
|
590
|
+
condition: StoreSuiAssetIdCondition
|
|
591
|
+
|
|
592
|
+
"""
|
|
593
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
594
|
+
"""
|
|
595
|
+
filter: StoreSuiAssetIdFilter
|
|
596
|
+
): StoreSuiAssetIdsConnection
|
|
597
|
+
|
|
598
|
+
"""Reads and enables pagination through a set of `TableField`."""
|
|
599
|
+
tableFields(
|
|
600
|
+
"""Only read the first `n` values of the set."""
|
|
601
|
+
first: Int
|
|
602
|
+
|
|
603
|
+
"""Only read the last `n` values of the set."""
|
|
604
|
+
last: Int
|
|
605
|
+
|
|
606
|
+
"""
|
|
607
|
+
Skip the first `n` values from our `after` cursor, an alternative to cursor
|
|
608
|
+
based pagination. May not be used with `last`.
|
|
609
|
+
"""
|
|
610
|
+
offset: Int
|
|
611
|
+
|
|
612
|
+
"""Read all values in the set before (above) this cursor."""
|
|
613
|
+
before: Cursor
|
|
614
|
+
|
|
615
|
+
"""Read all values in the set after (below) this cursor."""
|
|
616
|
+
after: Cursor
|
|
617
|
+
|
|
618
|
+
"""The method to use when ordering `TableField`."""
|
|
619
|
+
orderBy: [TableFieldsOrderBy!] = [PRIMARY_KEY_ASC]
|
|
620
|
+
|
|
621
|
+
"""
|
|
622
|
+
A condition to be used in determining which values should be returned by the collection.
|
|
623
|
+
"""
|
|
624
|
+
condition: TableFieldCondition
|
|
625
|
+
|
|
626
|
+
"""
|
|
627
|
+
A filter to be used in determining which values should be returned by the collection.
|
|
628
|
+
"""
|
|
629
|
+
filter: TableFieldFilter
|
|
630
|
+
): TableFieldsConnection
|
|
631
|
+
assetAccount(assetId: String!, account: String!): StoreAssetAccount
|
|
632
|
+
assetHolder(assetId: String!): StoreAssetHolder
|
|
633
|
+
assetMetadatum(assetId: String!): StoreAssetMetadatum
|
|
634
|
+
assetPool(asset0: String!, asset1: String!): StoreAssetPool
|
|
635
|
+
assetSupply(assetId: String!): StoreAssetSupply
|
|
636
|
+
assetWrapper(coinType: String!): StoreAssetWrapper
|
|
637
|
+
dappFeeConfig(uniqueResourceId: Int!): StoreDappFeeConfig
|
|
638
|
+
dappFeeState(dappKey: String!): StoreDappFeeState
|
|
639
|
+
dappMetadatum(dappKey: String!): StoreDappMetadatum
|
|
640
|
+
dappProxy(dappKey: String!): StoreDappProxy
|
|
641
|
+
dubheAssetId(uniqueResourceId: Int!): StoreDubheAssetId
|
|
642
|
+
dubheConfig(uniqueResourceId: Int!): StoreDubheConfig
|
|
643
|
+
suiAssetId(uniqueResourceId: Int!): StoreSuiAssetId
|
|
644
|
+
tableField(tableName: String!, fieldName: String!): TableField
|
|
645
|
+
|
|
646
|
+
"""Reads a single `StoreAssetAccount` using its globally unique `ID`."""
|
|
647
|
+
assetAccountByNodeId(
|
|
648
|
+
"""
|
|
649
|
+
The globally unique `ID` to be used in selecting a single `StoreAssetAccount`.
|
|
650
|
+
"""
|
|
651
|
+
nodeId: ID!
|
|
652
|
+
): StoreAssetAccount
|
|
653
|
+
|
|
654
|
+
"""Reads a single `StoreAssetHolder` using its globally unique `ID`."""
|
|
655
|
+
assetHolderByNodeId(
|
|
656
|
+
"""
|
|
657
|
+
The globally unique `ID` to be used in selecting a single `StoreAssetHolder`.
|
|
658
|
+
"""
|
|
659
|
+
nodeId: ID!
|
|
660
|
+
): StoreAssetHolder
|
|
661
|
+
|
|
662
|
+
"""Reads a single `StoreAssetMetadatum` using its globally unique `ID`."""
|
|
663
|
+
assetMetadatumByNodeId(
|
|
664
|
+
"""
|
|
665
|
+
The globally unique `ID` to be used in selecting a single `StoreAssetMetadatum`.
|
|
666
|
+
"""
|
|
667
|
+
nodeId: ID!
|
|
668
|
+
): StoreAssetMetadatum
|
|
669
|
+
|
|
670
|
+
"""Reads a single `StoreAssetPool` using its globally unique `ID`."""
|
|
671
|
+
assetPoolByNodeId(
|
|
672
|
+
"""
|
|
673
|
+
The globally unique `ID` to be used in selecting a single `StoreAssetPool`.
|
|
674
|
+
"""
|
|
675
|
+
nodeId: ID!
|
|
676
|
+
): StoreAssetPool
|
|
677
|
+
|
|
678
|
+
"""Reads a single `StoreAssetSupply` using its globally unique `ID`."""
|
|
679
|
+
assetSupplyByNodeId(
|
|
680
|
+
"""
|
|
681
|
+
The globally unique `ID` to be used in selecting a single `StoreAssetSupply`.
|
|
682
|
+
"""
|
|
683
|
+
nodeId: ID!
|
|
684
|
+
): StoreAssetSupply
|
|
685
|
+
|
|
686
|
+
"""Reads a single `StoreAssetWrapper` using its globally unique `ID`."""
|
|
687
|
+
assetWrapperByNodeId(
|
|
688
|
+
"""
|
|
689
|
+
The globally unique `ID` to be used in selecting a single `StoreAssetWrapper`.
|
|
690
|
+
"""
|
|
691
|
+
nodeId: ID!
|
|
692
|
+
): StoreAssetWrapper
|
|
693
|
+
|
|
694
|
+
"""Reads a single `StoreDappFeeConfig` using its globally unique `ID`."""
|
|
695
|
+
dappFeeConfigByNodeId(
|
|
696
|
+
"""
|
|
697
|
+
The globally unique `ID` to be used in selecting a single `StoreDappFeeConfig`.
|
|
698
|
+
"""
|
|
699
|
+
nodeId: ID!
|
|
700
|
+
): StoreDappFeeConfig
|
|
701
|
+
|
|
702
|
+
"""Reads a single `StoreDappFeeState` using its globally unique `ID`."""
|
|
703
|
+
dappFeeStateByNodeId(
|
|
704
|
+
"""
|
|
705
|
+
The globally unique `ID` to be used in selecting a single `StoreDappFeeState`.
|
|
706
|
+
"""
|
|
707
|
+
nodeId: ID!
|
|
708
|
+
): StoreDappFeeState
|
|
709
|
+
|
|
710
|
+
"""Reads a single `StoreDappMetadatum` using its globally unique `ID`."""
|
|
711
|
+
dappMetadatumByNodeId(
|
|
712
|
+
"""
|
|
713
|
+
The globally unique `ID` to be used in selecting a single `StoreDappMetadatum`.
|
|
714
|
+
"""
|
|
715
|
+
nodeId: ID!
|
|
716
|
+
): StoreDappMetadatum
|
|
717
|
+
|
|
718
|
+
"""Reads a single `StoreDappProxy` using its globally unique `ID`."""
|
|
719
|
+
dappProxyByNodeId(
|
|
720
|
+
"""
|
|
721
|
+
The globally unique `ID` to be used in selecting a single `StoreDappProxy`.
|
|
722
|
+
"""
|
|
723
|
+
nodeId: ID!
|
|
724
|
+
): StoreDappProxy
|
|
725
|
+
|
|
726
|
+
"""Reads a single `StoreDubheAssetId` using its globally unique `ID`."""
|
|
727
|
+
dubheAssetIdByNodeId(
|
|
728
|
+
"""
|
|
729
|
+
The globally unique `ID` to be used in selecting a single `StoreDubheAssetId`.
|
|
730
|
+
"""
|
|
731
|
+
nodeId: ID!
|
|
732
|
+
): StoreDubheAssetId
|
|
733
|
+
|
|
734
|
+
"""Reads a single `StoreDubheConfig` using its globally unique `ID`."""
|
|
735
|
+
dubheConfigByNodeId(
|
|
736
|
+
"""
|
|
737
|
+
The globally unique `ID` to be used in selecting a single `StoreDubheConfig`.
|
|
738
|
+
"""
|
|
739
|
+
nodeId: ID!
|
|
740
|
+
): StoreDubheConfig
|
|
741
|
+
|
|
742
|
+
"""Reads a single `StoreSuiAssetId` using its globally unique `ID`."""
|
|
743
|
+
suiAssetIdByNodeId(
|
|
744
|
+
"""
|
|
745
|
+
The globally unique `ID` to be used in selecting a single `StoreSuiAssetId`.
|
|
746
|
+
"""
|
|
747
|
+
nodeId: ID!
|
|
748
|
+
): StoreSuiAssetId
|
|
749
|
+
|
|
750
|
+
"""Reads a single `TableField` using its globally unique `ID`."""
|
|
751
|
+
tableFieldByNodeId(
|
|
752
|
+
"""
|
|
753
|
+
The globally unique `ID` to be used in selecting a single `TableField`.
|
|
754
|
+
"""
|
|
755
|
+
nodeId: ID!
|
|
756
|
+
): TableField
|
|
757
|
+
|
|
758
|
+
"""Get Schema information for all store tables"""
|
|
759
|
+
storeSchema: JSON
|
|
760
|
+
|
|
761
|
+
"""Query data from specified store table"""
|
|
762
|
+
storeData(table: String!): JSON
|
|
763
|
+
|
|
764
|
+
"""Get list of all available store table names"""
|
|
765
|
+
availableStoreTables: [String!]!
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
"""An object with a globally unique `ID`."""
|
|
769
|
+
interface Node {
|
|
770
|
+
"""
|
|
771
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
772
|
+
"""
|
|
773
|
+
nodeId: ID!
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
"""A connection to a list of `StoreAssetAccount` values."""
|
|
777
|
+
type StoreAssetAccountsConnection {
|
|
778
|
+
"""A list of `StoreAssetAccount` objects."""
|
|
779
|
+
nodes: [StoreAssetAccount!]!
|
|
780
|
+
|
|
781
|
+
"""
|
|
782
|
+
A list of edges which contains the `StoreAssetAccount` and cursor to aid in pagination.
|
|
783
|
+
"""
|
|
784
|
+
edges: [StoreAssetAccountsEdge!]!
|
|
785
|
+
|
|
786
|
+
"""Information to aid in pagination."""
|
|
787
|
+
pageInfo: PageInfo!
|
|
788
|
+
|
|
789
|
+
"""
|
|
790
|
+
The count of *all* `StoreAssetAccount` you could get from the connection.
|
|
791
|
+
"""
|
|
792
|
+
totalCount: Int!
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
type StoreAssetAccount implements Node {
|
|
796
|
+
"""
|
|
797
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
798
|
+
"""
|
|
799
|
+
nodeId: ID!
|
|
800
|
+
assetId: String!
|
|
801
|
+
account: String!
|
|
802
|
+
balance: String
|
|
803
|
+
status: String
|
|
804
|
+
createdAtTimestampMs: BigInt
|
|
805
|
+
updatedAtTimestampMs: BigInt
|
|
806
|
+
lastUpdateDigest: String
|
|
807
|
+
isDeleted: Boolean
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
"""
|
|
811
|
+
A signed eight-byte integer. The upper big integer values are greater than the
|
|
812
|
+
max value for a JavaScript number. Therefore all big integers will be output as
|
|
813
|
+
strings and not numbers.
|
|
814
|
+
"""
|
|
815
|
+
scalar BigInt
|
|
816
|
+
|
|
817
|
+
"""A `StoreAssetAccount` edge in the connection."""
|
|
818
|
+
type StoreAssetAccountsEdge {
|
|
819
|
+
"""A cursor for use in pagination."""
|
|
820
|
+
cursor: Cursor
|
|
821
|
+
|
|
822
|
+
"""The `StoreAssetAccount` at the end of the edge."""
|
|
823
|
+
node: StoreAssetAccount!
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
"""A location in a connection that can be used for resuming pagination."""
|
|
827
|
+
scalar Cursor
|
|
828
|
+
|
|
829
|
+
"""Information about pagination in a connection."""
|
|
830
|
+
type PageInfo {
|
|
831
|
+
"""When paginating forwards, are there more items?"""
|
|
832
|
+
hasNextPage: Boolean!
|
|
833
|
+
|
|
834
|
+
"""When paginating backwards, are there more items?"""
|
|
835
|
+
hasPreviousPage: Boolean!
|
|
836
|
+
|
|
837
|
+
"""When paginating backwards, the cursor to continue."""
|
|
838
|
+
startCursor: Cursor
|
|
839
|
+
|
|
840
|
+
"""When paginating forwards, the cursor to continue."""
|
|
841
|
+
endCursor: Cursor
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
"""Methods to use when ordering `StoreAssetAccount`."""
|
|
845
|
+
enum StoreAssetAccountsOrderBy {
|
|
846
|
+
NATURAL
|
|
847
|
+
ASSET_ID_ASC
|
|
848
|
+
ASSET_ID_DESC
|
|
849
|
+
ACCOUNT_ASC
|
|
850
|
+
ACCOUNT_DESC
|
|
851
|
+
BALANCE_ASC
|
|
852
|
+
BALANCE_DESC
|
|
853
|
+
STATUS_ASC
|
|
854
|
+
STATUS_DESC
|
|
855
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
856
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
857
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
858
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
859
|
+
LAST_UPDATE_DIGEST_ASC
|
|
860
|
+
LAST_UPDATE_DIGEST_DESC
|
|
861
|
+
IS_DELETED_ASC
|
|
862
|
+
IS_DELETED_DESC
|
|
863
|
+
PRIMARY_KEY_ASC
|
|
864
|
+
PRIMARY_KEY_DESC
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
"""
|
|
868
|
+
A condition to be used against `StoreAssetAccount` object types. All fields are
|
|
869
|
+
tested for equality and combined with a logical ‘and.’
|
|
870
|
+
"""
|
|
871
|
+
input StoreAssetAccountCondition {
|
|
872
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
873
|
+
assetId: String
|
|
874
|
+
|
|
875
|
+
"""Checks for equality with the object’s `account` field."""
|
|
876
|
+
account: String
|
|
877
|
+
|
|
878
|
+
"""Checks for equality with the object’s `balance` field."""
|
|
879
|
+
balance: String
|
|
880
|
+
|
|
881
|
+
"""Checks for equality with the object’s `status` field."""
|
|
882
|
+
status: String
|
|
883
|
+
|
|
884
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
885
|
+
createdAtTimestampMs: BigInt
|
|
886
|
+
|
|
887
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
888
|
+
updatedAtTimestampMs: BigInt
|
|
889
|
+
|
|
890
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
891
|
+
lastUpdateDigest: String
|
|
892
|
+
|
|
893
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
894
|
+
isDeleted: Boolean
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
"""
|
|
898
|
+
A filter to be used against `StoreAssetAccount` object types. All fields are combined with a logical ‘and.’
|
|
899
|
+
"""
|
|
900
|
+
input StoreAssetAccountFilter {
|
|
901
|
+
"""Filter by the object’s `assetId` field."""
|
|
902
|
+
assetId: StringFilter
|
|
903
|
+
|
|
904
|
+
"""Filter by the object’s `account` field."""
|
|
905
|
+
account: StringFilter
|
|
906
|
+
|
|
907
|
+
"""Filter by the object’s `balance` field."""
|
|
908
|
+
balance: StringFilter
|
|
909
|
+
|
|
910
|
+
"""Filter by the object’s `status` field."""
|
|
911
|
+
status: StringFilter
|
|
912
|
+
|
|
913
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
914
|
+
createdAtTimestampMs: BigIntFilter
|
|
915
|
+
|
|
916
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
917
|
+
updatedAtTimestampMs: BigIntFilter
|
|
918
|
+
|
|
919
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
920
|
+
lastUpdateDigest: StringFilter
|
|
921
|
+
|
|
922
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
923
|
+
isDeleted: BooleanFilter
|
|
924
|
+
|
|
925
|
+
"""Checks for all expressions in this list."""
|
|
926
|
+
and: [StoreAssetAccountFilter!]
|
|
927
|
+
|
|
928
|
+
"""Checks for any expressions in this list."""
|
|
929
|
+
or: [StoreAssetAccountFilter!]
|
|
930
|
+
|
|
931
|
+
"""Negates the expression."""
|
|
932
|
+
not: StoreAssetAccountFilter
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
"""
|
|
936
|
+
A filter to be used against String fields. All fields are combined with a logical ‘and.’
|
|
937
|
+
"""
|
|
938
|
+
input StringFilter {
|
|
939
|
+
"""
|
|
940
|
+
Is null (if `true` is specified) or is not null (if `false` is specified).
|
|
941
|
+
"""
|
|
942
|
+
isNull: Boolean
|
|
943
|
+
|
|
944
|
+
"""Equal to the specified value."""
|
|
945
|
+
equalTo: String
|
|
946
|
+
|
|
947
|
+
"""Not equal to the specified value."""
|
|
948
|
+
notEqualTo: String
|
|
949
|
+
|
|
950
|
+
"""
|
|
951
|
+
Not equal to the specified value, treating null like an ordinary value.
|
|
952
|
+
"""
|
|
953
|
+
distinctFrom: String
|
|
954
|
+
|
|
955
|
+
"""Equal to the specified value, treating null like an ordinary value."""
|
|
956
|
+
notDistinctFrom: String
|
|
957
|
+
|
|
958
|
+
"""Included in the specified list."""
|
|
959
|
+
in: [String!]
|
|
960
|
+
|
|
961
|
+
"""Not included in the specified list."""
|
|
962
|
+
notIn: [String!]
|
|
963
|
+
|
|
964
|
+
"""Less than the specified value."""
|
|
965
|
+
lessThan: String
|
|
966
|
+
|
|
967
|
+
"""Less than or equal to the specified value."""
|
|
968
|
+
lessThanOrEqualTo: String
|
|
969
|
+
|
|
970
|
+
"""Greater than the specified value."""
|
|
971
|
+
greaterThan: String
|
|
972
|
+
|
|
973
|
+
"""Greater than or equal to the specified value."""
|
|
974
|
+
greaterThanOrEqualTo: String
|
|
975
|
+
|
|
976
|
+
"""Contains the specified string (case-sensitive)."""
|
|
977
|
+
includes: String
|
|
978
|
+
|
|
979
|
+
"""Does not contain the specified string (case-sensitive)."""
|
|
980
|
+
notIncludes: String
|
|
981
|
+
|
|
982
|
+
"""Contains the specified string (case-insensitive)."""
|
|
983
|
+
includesInsensitive: String
|
|
984
|
+
|
|
985
|
+
"""Does not contain the specified string (case-insensitive)."""
|
|
986
|
+
notIncludesInsensitive: String
|
|
987
|
+
|
|
988
|
+
"""Starts with the specified string (case-sensitive)."""
|
|
989
|
+
startsWith: String
|
|
990
|
+
|
|
991
|
+
"""Does not start with the specified string (case-sensitive)."""
|
|
992
|
+
notStartsWith: String
|
|
993
|
+
|
|
994
|
+
"""Starts with the specified string (case-insensitive)."""
|
|
995
|
+
startsWithInsensitive: String
|
|
996
|
+
|
|
997
|
+
"""Does not start with the specified string (case-insensitive)."""
|
|
998
|
+
notStartsWithInsensitive: String
|
|
999
|
+
|
|
1000
|
+
"""Ends with the specified string (case-sensitive)."""
|
|
1001
|
+
endsWith: String
|
|
1002
|
+
|
|
1003
|
+
"""Does not end with the specified string (case-sensitive)."""
|
|
1004
|
+
notEndsWith: String
|
|
1005
|
+
|
|
1006
|
+
"""Ends with the specified string (case-insensitive)."""
|
|
1007
|
+
endsWithInsensitive: String
|
|
1008
|
+
|
|
1009
|
+
"""Does not end with the specified string (case-insensitive)."""
|
|
1010
|
+
notEndsWithInsensitive: String
|
|
1011
|
+
|
|
1012
|
+
"""
|
|
1013
|
+
Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
|
|
1014
|
+
"""
|
|
1015
|
+
like: String
|
|
1016
|
+
|
|
1017
|
+
"""
|
|
1018
|
+
Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
|
|
1019
|
+
"""
|
|
1020
|
+
notLike: String
|
|
1021
|
+
|
|
1022
|
+
"""
|
|
1023
|
+
Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
|
|
1024
|
+
"""
|
|
1025
|
+
likeInsensitive: String
|
|
1026
|
+
|
|
1027
|
+
"""
|
|
1028
|
+
Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
|
|
1029
|
+
"""
|
|
1030
|
+
notLikeInsensitive: String
|
|
1031
|
+
|
|
1032
|
+
"""Equal to the specified value (case-insensitive)."""
|
|
1033
|
+
equalToInsensitive: String
|
|
1034
|
+
|
|
1035
|
+
"""Not equal to the specified value (case-insensitive)."""
|
|
1036
|
+
notEqualToInsensitive: String
|
|
1037
|
+
|
|
1038
|
+
"""
|
|
1039
|
+
Not equal to the specified value, treating null like an ordinary value (case-insensitive).
|
|
1040
|
+
"""
|
|
1041
|
+
distinctFromInsensitive: String
|
|
1042
|
+
|
|
1043
|
+
"""
|
|
1044
|
+
Equal to the specified value, treating null like an ordinary value (case-insensitive).
|
|
1045
|
+
"""
|
|
1046
|
+
notDistinctFromInsensitive: String
|
|
1047
|
+
|
|
1048
|
+
"""Included in the specified list (case-insensitive)."""
|
|
1049
|
+
inInsensitive: [String!]
|
|
1050
|
+
|
|
1051
|
+
"""Not included in the specified list (case-insensitive)."""
|
|
1052
|
+
notInInsensitive: [String!]
|
|
1053
|
+
|
|
1054
|
+
"""Less than the specified value (case-insensitive)."""
|
|
1055
|
+
lessThanInsensitive: String
|
|
1056
|
+
|
|
1057
|
+
"""Less than or equal to the specified value (case-insensitive)."""
|
|
1058
|
+
lessThanOrEqualToInsensitive: String
|
|
1059
|
+
|
|
1060
|
+
"""Greater than the specified value (case-insensitive)."""
|
|
1061
|
+
greaterThanInsensitive: String
|
|
1062
|
+
|
|
1063
|
+
"""Greater than or equal to the specified value (case-insensitive)."""
|
|
1064
|
+
greaterThanOrEqualToInsensitive: String
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
"""
|
|
1068
|
+
A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’
|
|
1069
|
+
"""
|
|
1070
|
+
input BigIntFilter {
|
|
1071
|
+
"""
|
|
1072
|
+
Is null (if `true` is specified) or is not null (if `false` is specified).
|
|
1073
|
+
"""
|
|
1074
|
+
isNull: Boolean
|
|
1075
|
+
|
|
1076
|
+
"""Equal to the specified value."""
|
|
1077
|
+
equalTo: BigInt
|
|
1078
|
+
|
|
1079
|
+
"""Not equal to the specified value."""
|
|
1080
|
+
notEqualTo: BigInt
|
|
1081
|
+
|
|
1082
|
+
"""
|
|
1083
|
+
Not equal to the specified value, treating null like an ordinary value.
|
|
1084
|
+
"""
|
|
1085
|
+
distinctFrom: BigInt
|
|
1086
|
+
|
|
1087
|
+
"""Equal to the specified value, treating null like an ordinary value."""
|
|
1088
|
+
notDistinctFrom: BigInt
|
|
1089
|
+
|
|
1090
|
+
"""Included in the specified list."""
|
|
1091
|
+
in: [BigInt!]
|
|
1092
|
+
|
|
1093
|
+
"""Not included in the specified list."""
|
|
1094
|
+
notIn: [BigInt!]
|
|
1095
|
+
|
|
1096
|
+
"""Less than the specified value."""
|
|
1097
|
+
lessThan: BigInt
|
|
1098
|
+
|
|
1099
|
+
"""Less than or equal to the specified value."""
|
|
1100
|
+
lessThanOrEqualTo: BigInt
|
|
1101
|
+
|
|
1102
|
+
"""Greater than the specified value."""
|
|
1103
|
+
greaterThan: BigInt
|
|
1104
|
+
|
|
1105
|
+
"""Greater than or equal to the specified value."""
|
|
1106
|
+
greaterThanOrEqualTo: BigInt
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
"""
|
|
1110
|
+
A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’
|
|
1111
|
+
"""
|
|
1112
|
+
input BooleanFilter {
|
|
1113
|
+
"""
|
|
1114
|
+
Is null (if `true` is specified) or is not null (if `false` is specified).
|
|
1115
|
+
"""
|
|
1116
|
+
isNull: Boolean
|
|
1117
|
+
|
|
1118
|
+
"""Equal to the specified value."""
|
|
1119
|
+
equalTo: Boolean
|
|
1120
|
+
|
|
1121
|
+
"""Not equal to the specified value."""
|
|
1122
|
+
notEqualTo: Boolean
|
|
1123
|
+
|
|
1124
|
+
"""
|
|
1125
|
+
Not equal to the specified value, treating null like an ordinary value.
|
|
1126
|
+
"""
|
|
1127
|
+
distinctFrom: Boolean
|
|
1128
|
+
|
|
1129
|
+
"""Equal to the specified value, treating null like an ordinary value."""
|
|
1130
|
+
notDistinctFrom: Boolean
|
|
1131
|
+
|
|
1132
|
+
"""Included in the specified list."""
|
|
1133
|
+
in: [Boolean!]
|
|
1134
|
+
|
|
1135
|
+
"""Not included in the specified list."""
|
|
1136
|
+
notIn: [Boolean!]
|
|
1137
|
+
|
|
1138
|
+
"""Less than the specified value."""
|
|
1139
|
+
lessThan: Boolean
|
|
1140
|
+
|
|
1141
|
+
"""Less than or equal to the specified value."""
|
|
1142
|
+
lessThanOrEqualTo: Boolean
|
|
1143
|
+
|
|
1144
|
+
"""Greater than the specified value."""
|
|
1145
|
+
greaterThan: Boolean
|
|
1146
|
+
|
|
1147
|
+
"""Greater than or equal to the specified value."""
|
|
1148
|
+
greaterThanOrEqualTo: Boolean
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
"""A connection to a list of `StoreAssetHolder` values."""
|
|
1152
|
+
type StoreAssetHoldersConnection {
|
|
1153
|
+
"""A list of `StoreAssetHolder` objects."""
|
|
1154
|
+
nodes: [StoreAssetHolder!]!
|
|
1155
|
+
|
|
1156
|
+
"""
|
|
1157
|
+
A list of edges which contains the `StoreAssetHolder` and cursor to aid in pagination.
|
|
1158
|
+
"""
|
|
1159
|
+
edges: [StoreAssetHoldersEdge!]!
|
|
1160
|
+
|
|
1161
|
+
"""Information to aid in pagination."""
|
|
1162
|
+
pageInfo: PageInfo!
|
|
1163
|
+
|
|
1164
|
+
"""
|
|
1165
|
+
The count of *all* `StoreAssetHolder` you could get from the connection.
|
|
1166
|
+
"""
|
|
1167
|
+
totalCount: Int!
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
type StoreAssetHolder implements Node {
|
|
1171
|
+
"""
|
|
1172
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
1173
|
+
"""
|
|
1174
|
+
nodeId: ID!
|
|
1175
|
+
assetId: String!
|
|
1176
|
+
holder: String
|
|
1177
|
+
createdAtTimestampMs: BigInt
|
|
1178
|
+
updatedAtTimestampMs: BigInt
|
|
1179
|
+
lastUpdateDigest: String
|
|
1180
|
+
isDeleted: Boolean
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
"""A `StoreAssetHolder` edge in the connection."""
|
|
1184
|
+
type StoreAssetHoldersEdge {
|
|
1185
|
+
"""A cursor for use in pagination."""
|
|
1186
|
+
cursor: Cursor
|
|
1187
|
+
|
|
1188
|
+
"""The `StoreAssetHolder` at the end of the edge."""
|
|
1189
|
+
node: StoreAssetHolder!
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
"""Methods to use when ordering `StoreAssetHolder`."""
|
|
1193
|
+
enum StoreAssetHoldersOrderBy {
|
|
1194
|
+
NATURAL
|
|
1195
|
+
ASSET_ID_ASC
|
|
1196
|
+
ASSET_ID_DESC
|
|
1197
|
+
HOLDER_ASC
|
|
1198
|
+
HOLDER_DESC
|
|
1199
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
1200
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
1201
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
1202
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
1203
|
+
LAST_UPDATE_DIGEST_ASC
|
|
1204
|
+
LAST_UPDATE_DIGEST_DESC
|
|
1205
|
+
IS_DELETED_ASC
|
|
1206
|
+
IS_DELETED_DESC
|
|
1207
|
+
PRIMARY_KEY_ASC
|
|
1208
|
+
PRIMARY_KEY_DESC
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
"""
|
|
1212
|
+
A condition to be used against `StoreAssetHolder` object types. All fields are
|
|
1213
|
+
tested for equality and combined with a logical ‘and.’
|
|
1214
|
+
"""
|
|
1215
|
+
input StoreAssetHolderCondition {
|
|
1216
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
1217
|
+
assetId: String
|
|
1218
|
+
|
|
1219
|
+
"""Checks for equality with the object’s `holder` field."""
|
|
1220
|
+
holder: String
|
|
1221
|
+
|
|
1222
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
1223
|
+
createdAtTimestampMs: BigInt
|
|
1224
|
+
|
|
1225
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
1226
|
+
updatedAtTimestampMs: BigInt
|
|
1227
|
+
|
|
1228
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
1229
|
+
lastUpdateDigest: String
|
|
1230
|
+
|
|
1231
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
1232
|
+
isDeleted: Boolean
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
"""
|
|
1236
|
+
A filter to be used against `StoreAssetHolder` object types. All fields are combined with a logical ‘and.’
|
|
1237
|
+
"""
|
|
1238
|
+
input StoreAssetHolderFilter {
|
|
1239
|
+
"""Filter by the object’s `assetId` field."""
|
|
1240
|
+
assetId: StringFilter
|
|
1241
|
+
|
|
1242
|
+
"""Filter by the object’s `holder` field."""
|
|
1243
|
+
holder: StringFilter
|
|
1244
|
+
|
|
1245
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
1246
|
+
createdAtTimestampMs: BigIntFilter
|
|
1247
|
+
|
|
1248
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
1249
|
+
updatedAtTimestampMs: BigIntFilter
|
|
1250
|
+
|
|
1251
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
1252
|
+
lastUpdateDigest: StringFilter
|
|
1253
|
+
|
|
1254
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
1255
|
+
isDeleted: BooleanFilter
|
|
1256
|
+
|
|
1257
|
+
"""Checks for all expressions in this list."""
|
|
1258
|
+
and: [StoreAssetHolderFilter!]
|
|
1259
|
+
|
|
1260
|
+
"""Checks for any expressions in this list."""
|
|
1261
|
+
or: [StoreAssetHolderFilter!]
|
|
1262
|
+
|
|
1263
|
+
"""Negates the expression."""
|
|
1264
|
+
not: StoreAssetHolderFilter
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
"""A connection to a list of `StoreAssetMetadatum` values."""
|
|
1268
|
+
type StoreAssetMetadataConnection {
|
|
1269
|
+
"""A list of `StoreAssetMetadatum` objects."""
|
|
1270
|
+
nodes: [StoreAssetMetadatum!]!
|
|
1271
|
+
|
|
1272
|
+
"""
|
|
1273
|
+
A list of edges which contains the `StoreAssetMetadatum` and cursor to aid in pagination.
|
|
1274
|
+
"""
|
|
1275
|
+
edges: [StoreAssetMetadataEdge!]!
|
|
1276
|
+
|
|
1277
|
+
"""Information to aid in pagination."""
|
|
1278
|
+
pageInfo: PageInfo!
|
|
1279
|
+
|
|
1280
|
+
"""
|
|
1281
|
+
The count of *all* `StoreAssetMetadatum` you could get from the connection.
|
|
1282
|
+
"""
|
|
1283
|
+
totalCount: Int!
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
type StoreAssetMetadatum implements Node {
|
|
1287
|
+
"""
|
|
1288
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
1289
|
+
"""
|
|
1290
|
+
nodeId: ID!
|
|
1291
|
+
assetId: String!
|
|
1292
|
+
name: String
|
|
1293
|
+
symbol: String
|
|
1294
|
+
description: String
|
|
1295
|
+
decimals: Int
|
|
1296
|
+
iconUrl: String
|
|
1297
|
+
owner: String
|
|
1298
|
+
status: String
|
|
1299
|
+
isMintable: Boolean
|
|
1300
|
+
isBurnable: Boolean
|
|
1301
|
+
isFreezable: Boolean
|
|
1302
|
+
assetType: String
|
|
1303
|
+
createdAtTimestampMs: BigInt
|
|
1304
|
+
updatedAtTimestampMs: BigInt
|
|
1305
|
+
lastUpdateDigest: String
|
|
1306
|
+
isDeleted: Boolean
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
"""A `StoreAssetMetadatum` edge in the connection."""
|
|
1310
|
+
type StoreAssetMetadataEdge {
|
|
1311
|
+
"""A cursor for use in pagination."""
|
|
1312
|
+
cursor: Cursor
|
|
1313
|
+
|
|
1314
|
+
"""The `StoreAssetMetadatum` at the end of the edge."""
|
|
1315
|
+
node: StoreAssetMetadatum!
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
"""Methods to use when ordering `StoreAssetMetadatum`."""
|
|
1319
|
+
enum StoreAssetMetadataOrderBy {
|
|
1320
|
+
NATURAL
|
|
1321
|
+
ASSET_ID_ASC
|
|
1322
|
+
ASSET_ID_DESC
|
|
1323
|
+
NAME_ASC
|
|
1324
|
+
NAME_DESC
|
|
1325
|
+
SYMBOL_ASC
|
|
1326
|
+
SYMBOL_DESC
|
|
1327
|
+
DESCRIPTION_ASC
|
|
1328
|
+
DESCRIPTION_DESC
|
|
1329
|
+
DECIMALS_ASC
|
|
1330
|
+
DECIMALS_DESC
|
|
1331
|
+
ICON_URL_ASC
|
|
1332
|
+
ICON_URL_DESC
|
|
1333
|
+
OWNER_ASC
|
|
1334
|
+
OWNER_DESC
|
|
1335
|
+
STATUS_ASC
|
|
1336
|
+
STATUS_DESC
|
|
1337
|
+
IS_MINTABLE_ASC
|
|
1338
|
+
IS_MINTABLE_DESC
|
|
1339
|
+
IS_BURNABLE_ASC
|
|
1340
|
+
IS_BURNABLE_DESC
|
|
1341
|
+
IS_FREEZABLE_ASC
|
|
1342
|
+
IS_FREEZABLE_DESC
|
|
1343
|
+
ASSET_TYPE_ASC
|
|
1344
|
+
ASSET_TYPE_DESC
|
|
1345
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
1346
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
1347
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
1348
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
1349
|
+
LAST_UPDATE_DIGEST_ASC
|
|
1350
|
+
LAST_UPDATE_DIGEST_DESC
|
|
1351
|
+
IS_DELETED_ASC
|
|
1352
|
+
IS_DELETED_DESC
|
|
1353
|
+
PRIMARY_KEY_ASC
|
|
1354
|
+
PRIMARY_KEY_DESC
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
"""
|
|
1358
|
+
A condition to be used against `StoreAssetMetadatum` object types. All fields
|
|
1359
|
+
are tested for equality and combined with a logical ‘and.’
|
|
1360
|
+
"""
|
|
1361
|
+
input StoreAssetMetadatumCondition {
|
|
1362
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
1363
|
+
assetId: String
|
|
1364
|
+
|
|
1365
|
+
"""Checks for equality with the object’s `name` field."""
|
|
1366
|
+
name: String
|
|
1367
|
+
|
|
1368
|
+
"""Checks for equality with the object’s `symbol` field."""
|
|
1369
|
+
symbol: String
|
|
1370
|
+
|
|
1371
|
+
"""Checks for equality with the object’s `description` field."""
|
|
1372
|
+
description: String
|
|
1373
|
+
|
|
1374
|
+
"""Checks for equality with the object’s `decimals` field."""
|
|
1375
|
+
decimals: Int
|
|
1376
|
+
|
|
1377
|
+
"""Checks for equality with the object’s `iconUrl` field."""
|
|
1378
|
+
iconUrl: String
|
|
1379
|
+
|
|
1380
|
+
"""Checks for equality with the object’s `owner` field."""
|
|
1381
|
+
owner: String
|
|
1382
|
+
|
|
1383
|
+
"""Checks for equality with the object’s `status` field."""
|
|
1384
|
+
status: String
|
|
1385
|
+
|
|
1386
|
+
"""Checks for equality with the object’s `isMintable` field."""
|
|
1387
|
+
isMintable: Boolean
|
|
1388
|
+
|
|
1389
|
+
"""Checks for equality with the object’s `isBurnable` field."""
|
|
1390
|
+
isBurnable: Boolean
|
|
1391
|
+
|
|
1392
|
+
"""Checks for equality with the object’s `isFreezable` field."""
|
|
1393
|
+
isFreezable: Boolean
|
|
1394
|
+
|
|
1395
|
+
"""Checks for equality with the object’s `assetType` field."""
|
|
1396
|
+
assetType: String
|
|
1397
|
+
|
|
1398
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
1399
|
+
createdAtTimestampMs: BigInt
|
|
1400
|
+
|
|
1401
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
1402
|
+
updatedAtTimestampMs: BigInt
|
|
1403
|
+
|
|
1404
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
1405
|
+
lastUpdateDigest: String
|
|
1406
|
+
|
|
1407
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
1408
|
+
isDeleted: Boolean
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
"""
|
|
1412
|
+
A filter to be used against `StoreAssetMetadatum` object types. All fields are combined with a logical ‘and.’
|
|
1413
|
+
"""
|
|
1414
|
+
input StoreAssetMetadatumFilter {
|
|
1415
|
+
"""Filter by the object’s `assetId` field."""
|
|
1416
|
+
assetId: StringFilter
|
|
1417
|
+
|
|
1418
|
+
"""Filter by the object’s `name` field."""
|
|
1419
|
+
name: StringFilter
|
|
1420
|
+
|
|
1421
|
+
"""Filter by the object’s `symbol` field."""
|
|
1422
|
+
symbol: StringFilter
|
|
1423
|
+
|
|
1424
|
+
"""Filter by the object’s `description` field."""
|
|
1425
|
+
description: StringFilter
|
|
1426
|
+
|
|
1427
|
+
"""Filter by the object’s `decimals` field."""
|
|
1428
|
+
decimals: IntFilter
|
|
1429
|
+
|
|
1430
|
+
"""Filter by the object’s `iconUrl` field."""
|
|
1431
|
+
iconUrl: StringFilter
|
|
1432
|
+
|
|
1433
|
+
"""Filter by the object’s `owner` field."""
|
|
1434
|
+
owner: StringFilter
|
|
1435
|
+
|
|
1436
|
+
"""Filter by the object’s `status` field."""
|
|
1437
|
+
status: StringFilter
|
|
1438
|
+
|
|
1439
|
+
"""Filter by the object’s `isMintable` field."""
|
|
1440
|
+
isMintable: BooleanFilter
|
|
1441
|
+
|
|
1442
|
+
"""Filter by the object’s `isBurnable` field."""
|
|
1443
|
+
isBurnable: BooleanFilter
|
|
1444
|
+
|
|
1445
|
+
"""Filter by the object’s `isFreezable` field."""
|
|
1446
|
+
isFreezable: BooleanFilter
|
|
1447
|
+
|
|
1448
|
+
"""Filter by the object’s `assetType` field."""
|
|
1449
|
+
assetType: StringFilter
|
|
1450
|
+
|
|
1451
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
1452
|
+
createdAtTimestampMs: BigIntFilter
|
|
1453
|
+
|
|
1454
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
1455
|
+
updatedAtTimestampMs: BigIntFilter
|
|
1456
|
+
|
|
1457
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
1458
|
+
lastUpdateDigest: StringFilter
|
|
1459
|
+
|
|
1460
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
1461
|
+
isDeleted: BooleanFilter
|
|
1462
|
+
|
|
1463
|
+
"""Checks for all expressions in this list."""
|
|
1464
|
+
and: [StoreAssetMetadatumFilter!]
|
|
1465
|
+
|
|
1466
|
+
"""Checks for any expressions in this list."""
|
|
1467
|
+
or: [StoreAssetMetadatumFilter!]
|
|
1468
|
+
|
|
1469
|
+
"""Negates the expression."""
|
|
1470
|
+
not: StoreAssetMetadatumFilter
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
"""
|
|
1474
|
+
A filter to be used against Int fields. All fields are combined with a logical ‘and.’
|
|
1475
|
+
"""
|
|
1476
|
+
input IntFilter {
|
|
1477
|
+
"""
|
|
1478
|
+
Is null (if `true` is specified) or is not null (if `false` is specified).
|
|
1479
|
+
"""
|
|
1480
|
+
isNull: Boolean
|
|
1481
|
+
|
|
1482
|
+
"""Equal to the specified value."""
|
|
1483
|
+
equalTo: Int
|
|
1484
|
+
|
|
1485
|
+
"""Not equal to the specified value."""
|
|
1486
|
+
notEqualTo: Int
|
|
1487
|
+
|
|
1488
|
+
"""
|
|
1489
|
+
Not equal to the specified value, treating null like an ordinary value.
|
|
1490
|
+
"""
|
|
1491
|
+
distinctFrom: Int
|
|
1492
|
+
|
|
1493
|
+
"""Equal to the specified value, treating null like an ordinary value."""
|
|
1494
|
+
notDistinctFrom: Int
|
|
1495
|
+
|
|
1496
|
+
"""Included in the specified list."""
|
|
1497
|
+
in: [Int!]
|
|
1498
|
+
|
|
1499
|
+
"""Not included in the specified list."""
|
|
1500
|
+
notIn: [Int!]
|
|
1501
|
+
|
|
1502
|
+
"""Less than the specified value."""
|
|
1503
|
+
lessThan: Int
|
|
1504
|
+
|
|
1505
|
+
"""Less than or equal to the specified value."""
|
|
1506
|
+
lessThanOrEqualTo: Int
|
|
1507
|
+
|
|
1508
|
+
"""Greater than the specified value."""
|
|
1509
|
+
greaterThan: Int
|
|
1510
|
+
|
|
1511
|
+
"""Greater than or equal to the specified value."""
|
|
1512
|
+
greaterThanOrEqualTo: Int
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
"""A connection to a list of `StoreAssetPool` values."""
|
|
1516
|
+
type StoreAssetPoolsConnection {
|
|
1517
|
+
"""A list of `StoreAssetPool` objects."""
|
|
1518
|
+
nodes: [StoreAssetPool!]!
|
|
1519
|
+
|
|
1520
|
+
"""
|
|
1521
|
+
A list of edges which contains the `StoreAssetPool` and cursor to aid in pagination.
|
|
1522
|
+
"""
|
|
1523
|
+
edges: [StoreAssetPoolsEdge!]!
|
|
1524
|
+
|
|
1525
|
+
"""Information to aid in pagination."""
|
|
1526
|
+
pageInfo: PageInfo!
|
|
1527
|
+
|
|
1528
|
+
"""The count of *all* `StoreAssetPool` you could get from the connection."""
|
|
1529
|
+
totalCount: Int!
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
type StoreAssetPool implements Node {
|
|
1533
|
+
"""
|
|
1534
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
1535
|
+
"""
|
|
1536
|
+
nodeId: ID!
|
|
1537
|
+
asset0: String!
|
|
1538
|
+
asset1: String!
|
|
1539
|
+
poolAddress: String
|
|
1540
|
+
lpAsset: String
|
|
1541
|
+
reserve0: String
|
|
1542
|
+
reserve1: String
|
|
1543
|
+
kLast: String
|
|
1544
|
+
createdAtTimestampMs: BigInt
|
|
1545
|
+
updatedAtTimestampMs: BigInt
|
|
1546
|
+
lastUpdateDigest: String
|
|
1547
|
+
isDeleted: Boolean
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
"""A `StoreAssetPool` edge in the connection."""
|
|
1551
|
+
type StoreAssetPoolsEdge {
|
|
1552
|
+
"""A cursor for use in pagination."""
|
|
1553
|
+
cursor: Cursor
|
|
1554
|
+
|
|
1555
|
+
"""The `StoreAssetPool` at the end of the edge."""
|
|
1556
|
+
node: StoreAssetPool!
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
"""Methods to use when ordering `StoreAssetPool`."""
|
|
1560
|
+
enum StoreAssetPoolsOrderBy {
|
|
1561
|
+
NATURAL
|
|
1562
|
+
ASSET0_ASC
|
|
1563
|
+
ASSET0_DESC
|
|
1564
|
+
ASSET1_ASC
|
|
1565
|
+
ASSET1_DESC
|
|
1566
|
+
POOL_ADDRESS_ASC
|
|
1567
|
+
POOL_ADDRESS_DESC
|
|
1568
|
+
LP_ASSET_ASC
|
|
1569
|
+
LP_ASSET_DESC
|
|
1570
|
+
RESERVE0_ASC
|
|
1571
|
+
RESERVE0_DESC
|
|
1572
|
+
RESERVE1_ASC
|
|
1573
|
+
RESERVE1_DESC
|
|
1574
|
+
K_LAST_ASC
|
|
1575
|
+
K_LAST_DESC
|
|
1576
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
1577
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
1578
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
1579
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
1580
|
+
LAST_UPDATE_DIGEST_ASC
|
|
1581
|
+
LAST_UPDATE_DIGEST_DESC
|
|
1582
|
+
IS_DELETED_ASC
|
|
1583
|
+
IS_DELETED_DESC
|
|
1584
|
+
PRIMARY_KEY_ASC
|
|
1585
|
+
PRIMARY_KEY_DESC
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
"""
|
|
1589
|
+
A condition to be used against `StoreAssetPool` object types. All fields are
|
|
1590
|
+
tested for equality and combined with a logical ‘and.’
|
|
1591
|
+
"""
|
|
1592
|
+
input StoreAssetPoolCondition {
|
|
1593
|
+
"""Checks for equality with the object’s `asset0` field."""
|
|
1594
|
+
asset0: String
|
|
1595
|
+
|
|
1596
|
+
"""Checks for equality with the object’s `asset1` field."""
|
|
1597
|
+
asset1: String
|
|
1598
|
+
|
|
1599
|
+
"""Checks for equality with the object’s `poolAddress` field."""
|
|
1600
|
+
poolAddress: String
|
|
1601
|
+
|
|
1602
|
+
"""Checks for equality with the object’s `lpAsset` field."""
|
|
1603
|
+
lpAsset: String
|
|
1604
|
+
|
|
1605
|
+
"""Checks for equality with the object’s `reserve0` field."""
|
|
1606
|
+
reserve0: String
|
|
1607
|
+
|
|
1608
|
+
"""Checks for equality with the object’s `reserve1` field."""
|
|
1609
|
+
reserve1: String
|
|
1610
|
+
|
|
1611
|
+
"""Checks for equality with the object’s `kLast` field."""
|
|
1612
|
+
kLast: String
|
|
1613
|
+
|
|
1614
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
1615
|
+
createdAtTimestampMs: BigInt
|
|
1616
|
+
|
|
1617
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
1618
|
+
updatedAtTimestampMs: BigInt
|
|
1619
|
+
|
|
1620
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
1621
|
+
lastUpdateDigest: String
|
|
1622
|
+
|
|
1623
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
1624
|
+
isDeleted: Boolean
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
"""
|
|
1628
|
+
A filter to be used against `StoreAssetPool` object types. All fields are combined with a logical ‘and.’
|
|
1629
|
+
"""
|
|
1630
|
+
input StoreAssetPoolFilter {
|
|
1631
|
+
"""Filter by the object’s `asset0` field."""
|
|
1632
|
+
asset0: StringFilter
|
|
1633
|
+
|
|
1634
|
+
"""Filter by the object’s `asset1` field."""
|
|
1635
|
+
asset1: StringFilter
|
|
1636
|
+
|
|
1637
|
+
"""Filter by the object’s `poolAddress` field."""
|
|
1638
|
+
poolAddress: StringFilter
|
|
1639
|
+
|
|
1640
|
+
"""Filter by the object’s `lpAsset` field."""
|
|
1641
|
+
lpAsset: StringFilter
|
|
1642
|
+
|
|
1643
|
+
"""Filter by the object’s `reserve0` field."""
|
|
1644
|
+
reserve0: StringFilter
|
|
1645
|
+
|
|
1646
|
+
"""Filter by the object’s `reserve1` field."""
|
|
1647
|
+
reserve1: StringFilter
|
|
1648
|
+
|
|
1649
|
+
"""Filter by the object’s `kLast` field."""
|
|
1650
|
+
kLast: StringFilter
|
|
1651
|
+
|
|
1652
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
1653
|
+
createdAtTimestampMs: BigIntFilter
|
|
1654
|
+
|
|
1655
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
1656
|
+
updatedAtTimestampMs: BigIntFilter
|
|
1657
|
+
|
|
1658
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
1659
|
+
lastUpdateDigest: StringFilter
|
|
1660
|
+
|
|
1661
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
1662
|
+
isDeleted: BooleanFilter
|
|
1663
|
+
|
|
1664
|
+
"""Checks for all expressions in this list."""
|
|
1665
|
+
and: [StoreAssetPoolFilter!]
|
|
1666
|
+
|
|
1667
|
+
"""Checks for any expressions in this list."""
|
|
1668
|
+
or: [StoreAssetPoolFilter!]
|
|
1669
|
+
|
|
1670
|
+
"""Negates the expression."""
|
|
1671
|
+
not: StoreAssetPoolFilter
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
"""A connection to a list of `StoreAssetSupply` values."""
|
|
1675
|
+
type StoreAssetSuppliesConnection {
|
|
1676
|
+
"""A list of `StoreAssetSupply` objects."""
|
|
1677
|
+
nodes: [StoreAssetSupply!]!
|
|
1678
|
+
|
|
1679
|
+
"""
|
|
1680
|
+
A list of edges which contains the `StoreAssetSupply` and cursor to aid in pagination.
|
|
1681
|
+
"""
|
|
1682
|
+
edges: [StoreAssetSuppliesEdge!]!
|
|
1683
|
+
|
|
1684
|
+
"""Information to aid in pagination."""
|
|
1685
|
+
pageInfo: PageInfo!
|
|
1686
|
+
|
|
1687
|
+
"""
|
|
1688
|
+
The count of *all* `StoreAssetSupply` you could get from the connection.
|
|
1689
|
+
"""
|
|
1690
|
+
totalCount: Int!
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
type StoreAssetSupply implements Node {
|
|
1694
|
+
"""
|
|
1695
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
1696
|
+
"""
|
|
1697
|
+
nodeId: ID!
|
|
1698
|
+
assetId: String!
|
|
1699
|
+
supply: String
|
|
1700
|
+
createdAtTimestampMs: BigInt
|
|
1701
|
+
updatedAtTimestampMs: BigInt
|
|
1702
|
+
lastUpdateDigest: String
|
|
1703
|
+
isDeleted: Boolean
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
"""A `StoreAssetSupply` edge in the connection."""
|
|
1707
|
+
type StoreAssetSuppliesEdge {
|
|
1708
|
+
"""A cursor for use in pagination."""
|
|
1709
|
+
cursor: Cursor
|
|
1710
|
+
|
|
1711
|
+
"""The `StoreAssetSupply` at the end of the edge."""
|
|
1712
|
+
node: StoreAssetSupply!
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
"""Methods to use when ordering `StoreAssetSupply`."""
|
|
1716
|
+
enum StoreAssetSuppliesOrderBy {
|
|
1717
|
+
NATURAL
|
|
1718
|
+
ASSET_ID_ASC
|
|
1719
|
+
ASSET_ID_DESC
|
|
1720
|
+
SUPPLY_ASC
|
|
1721
|
+
SUPPLY_DESC
|
|
1722
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
1723
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
1724
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
1725
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
1726
|
+
LAST_UPDATE_DIGEST_ASC
|
|
1727
|
+
LAST_UPDATE_DIGEST_DESC
|
|
1728
|
+
IS_DELETED_ASC
|
|
1729
|
+
IS_DELETED_DESC
|
|
1730
|
+
PRIMARY_KEY_ASC
|
|
1731
|
+
PRIMARY_KEY_DESC
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
"""
|
|
1735
|
+
A condition to be used against `StoreAssetSupply` object types. All fields are
|
|
1736
|
+
tested for equality and combined with a logical ‘and.’
|
|
1737
|
+
"""
|
|
1738
|
+
input StoreAssetSupplyCondition {
|
|
1739
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
1740
|
+
assetId: String
|
|
1741
|
+
|
|
1742
|
+
"""Checks for equality with the object’s `supply` field."""
|
|
1743
|
+
supply: String
|
|
1744
|
+
|
|
1745
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
1746
|
+
createdAtTimestampMs: BigInt
|
|
1747
|
+
|
|
1748
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
1749
|
+
updatedAtTimestampMs: BigInt
|
|
1750
|
+
|
|
1751
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
1752
|
+
lastUpdateDigest: String
|
|
1753
|
+
|
|
1754
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
1755
|
+
isDeleted: Boolean
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
"""
|
|
1759
|
+
A filter to be used against `StoreAssetSupply` object types. All fields are combined with a logical ‘and.’
|
|
1760
|
+
"""
|
|
1761
|
+
input StoreAssetSupplyFilter {
|
|
1762
|
+
"""Filter by the object’s `assetId` field."""
|
|
1763
|
+
assetId: StringFilter
|
|
1764
|
+
|
|
1765
|
+
"""Filter by the object’s `supply` field."""
|
|
1766
|
+
supply: StringFilter
|
|
1767
|
+
|
|
1768
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
1769
|
+
createdAtTimestampMs: BigIntFilter
|
|
1770
|
+
|
|
1771
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
1772
|
+
updatedAtTimestampMs: BigIntFilter
|
|
1773
|
+
|
|
1774
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
1775
|
+
lastUpdateDigest: StringFilter
|
|
1776
|
+
|
|
1777
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
1778
|
+
isDeleted: BooleanFilter
|
|
1779
|
+
|
|
1780
|
+
"""Checks for all expressions in this list."""
|
|
1781
|
+
and: [StoreAssetSupplyFilter!]
|
|
1782
|
+
|
|
1783
|
+
"""Checks for any expressions in this list."""
|
|
1784
|
+
or: [StoreAssetSupplyFilter!]
|
|
1785
|
+
|
|
1786
|
+
"""Negates the expression."""
|
|
1787
|
+
not: StoreAssetSupplyFilter
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
"""A connection to a list of `StoreAssetSwap` values."""
|
|
1791
|
+
type StoreAssetSwapsConnection {
|
|
1792
|
+
"""A list of `StoreAssetSwap` objects."""
|
|
1793
|
+
nodes: [StoreAssetSwap!]!
|
|
1794
|
+
|
|
1795
|
+
"""
|
|
1796
|
+
A list of edges which contains the `StoreAssetSwap` and cursor to aid in pagination.
|
|
1797
|
+
"""
|
|
1798
|
+
edges: [StoreAssetSwapsEdge!]!
|
|
1799
|
+
|
|
1800
|
+
"""Information to aid in pagination."""
|
|
1801
|
+
pageInfo: PageInfo!
|
|
1802
|
+
|
|
1803
|
+
"""The count of *all* `StoreAssetSwap` you could get from the connection."""
|
|
1804
|
+
totalCount: Int!
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
type StoreAssetSwap {
|
|
1808
|
+
from: String
|
|
1809
|
+
asset0: String
|
|
1810
|
+
asset1: String
|
|
1811
|
+
amount0: String
|
|
1812
|
+
amount1: String
|
|
1813
|
+
to: String
|
|
1814
|
+
createdAtTimestampMs: BigInt
|
|
1815
|
+
updatedAtTimestampMs: BigInt
|
|
1816
|
+
lastUpdateDigest: String
|
|
1817
|
+
isDeleted: Boolean
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
"""A `StoreAssetSwap` edge in the connection."""
|
|
1821
|
+
type StoreAssetSwapsEdge {
|
|
1822
|
+
"""A cursor for use in pagination."""
|
|
1823
|
+
cursor: Cursor
|
|
1824
|
+
|
|
1825
|
+
"""The `StoreAssetSwap` at the end of the edge."""
|
|
1826
|
+
node: StoreAssetSwap!
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
"""Methods to use when ordering `StoreAssetSwap`."""
|
|
1830
|
+
enum StoreAssetSwapsOrderBy {
|
|
1831
|
+
NATURAL
|
|
1832
|
+
FROM_ASC
|
|
1833
|
+
FROM_DESC
|
|
1834
|
+
ASSET0_ASC
|
|
1835
|
+
ASSET0_DESC
|
|
1836
|
+
ASSET1_ASC
|
|
1837
|
+
ASSET1_DESC
|
|
1838
|
+
AMOUNT0_ASC
|
|
1839
|
+
AMOUNT0_DESC
|
|
1840
|
+
AMOUNT1_ASC
|
|
1841
|
+
AMOUNT1_DESC
|
|
1842
|
+
TO_ASC
|
|
1843
|
+
TO_DESC
|
|
1844
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
1845
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
1846
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
1847
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
1848
|
+
LAST_UPDATE_DIGEST_ASC
|
|
1849
|
+
LAST_UPDATE_DIGEST_DESC
|
|
1850
|
+
IS_DELETED_ASC
|
|
1851
|
+
IS_DELETED_DESC
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
"""
|
|
1855
|
+
A condition to be used against `StoreAssetSwap` object types. All fields are
|
|
1856
|
+
tested for equality and combined with a logical ‘and.’
|
|
1857
|
+
"""
|
|
1858
|
+
input StoreAssetSwapCondition {
|
|
1859
|
+
"""Checks for equality with the object’s `from` field."""
|
|
1860
|
+
from: String
|
|
1861
|
+
|
|
1862
|
+
"""Checks for equality with the object’s `asset0` field."""
|
|
1863
|
+
asset0: String
|
|
1864
|
+
|
|
1865
|
+
"""Checks for equality with the object’s `asset1` field."""
|
|
1866
|
+
asset1: String
|
|
1867
|
+
|
|
1868
|
+
"""Checks for equality with the object’s `amount0` field."""
|
|
1869
|
+
amount0: String
|
|
1870
|
+
|
|
1871
|
+
"""Checks for equality with the object’s `amount1` field."""
|
|
1872
|
+
amount1: String
|
|
1873
|
+
|
|
1874
|
+
"""Checks for equality with the object’s `to` field."""
|
|
1875
|
+
to: String
|
|
1876
|
+
|
|
1877
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
1878
|
+
createdAtTimestampMs: BigInt
|
|
1879
|
+
|
|
1880
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
1881
|
+
updatedAtTimestampMs: BigInt
|
|
1882
|
+
|
|
1883
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
1884
|
+
lastUpdateDigest: String
|
|
1885
|
+
|
|
1886
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
1887
|
+
isDeleted: Boolean
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
"""
|
|
1891
|
+
A filter to be used against `StoreAssetSwap` object types. All fields are combined with a logical ‘and.’
|
|
1892
|
+
"""
|
|
1893
|
+
input StoreAssetSwapFilter {
|
|
1894
|
+
"""Filter by the object’s `from` field."""
|
|
1895
|
+
from: StringFilter
|
|
1896
|
+
|
|
1897
|
+
"""Filter by the object’s `asset0` field."""
|
|
1898
|
+
asset0: StringFilter
|
|
1899
|
+
|
|
1900
|
+
"""Filter by the object’s `asset1` field."""
|
|
1901
|
+
asset1: StringFilter
|
|
1902
|
+
|
|
1903
|
+
"""Filter by the object’s `amount0` field."""
|
|
1904
|
+
amount0: StringFilter
|
|
1905
|
+
|
|
1906
|
+
"""Filter by the object’s `amount1` field."""
|
|
1907
|
+
amount1: StringFilter
|
|
1908
|
+
|
|
1909
|
+
"""Filter by the object’s `to` field."""
|
|
1910
|
+
to: StringFilter
|
|
1911
|
+
|
|
1912
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
1913
|
+
createdAtTimestampMs: BigIntFilter
|
|
1914
|
+
|
|
1915
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
1916
|
+
updatedAtTimestampMs: BigIntFilter
|
|
1917
|
+
|
|
1918
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
1919
|
+
lastUpdateDigest: StringFilter
|
|
1920
|
+
|
|
1921
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
1922
|
+
isDeleted: BooleanFilter
|
|
1923
|
+
|
|
1924
|
+
"""Checks for all expressions in this list."""
|
|
1925
|
+
and: [StoreAssetSwapFilter!]
|
|
1926
|
+
|
|
1927
|
+
"""Checks for any expressions in this list."""
|
|
1928
|
+
or: [StoreAssetSwapFilter!]
|
|
1929
|
+
|
|
1930
|
+
"""Negates the expression."""
|
|
1931
|
+
not: StoreAssetSwapFilter
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
"""A connection to a list of `StoreAssetTransfer` values."""
|
|
1935
|
+
type StoreAssetTransfersConnection {
|
|
1936
|
+
"""A list of `StoreAssetTransfer` objects."""
|
|
1937
|
+
nodes: [StoreAssetTransfer!]!
|
|
1938
|
+
|
|
1939
|
+
"""
|
|
1940
|
+
A list of edges which contains the `StoreAssetTransfer` and cursor to aid in pagination.
|
|
1941
|
+
"""
|
|
1942
|
+
edges: [StoreAssetTransfersEdge!]!
|
|
1943
|
+
|
|
1944
|
+
"""Information to aid in pagination."""
|
|
1945
|
+
pageInfo: PageInfo!
|
|
1946
|
+
|
|
1947
|
+
"""
|
|
1948
|
+
The count of *all* `StoreAssetTransfer` you could get from the connection.
|
|
1949
|
+
"""
|
|
1950
|
+
totalCount: Int!
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
type StoreAssetTransfer {
|
|
1954
|
+
from: String
|
|
1955
|
+
to: String
|
|
1956
|
+
amount: String
|
|
1957
|
+
assetId: String
|
|
1958
|
+
createdAtTimestampMs: BigInt
|
|
1959
|
+
updatedAtTimestampMs: BigInt
|
|
1960
|
+
lastUpdateDigest: String
|
|
1961
|
+
isDeleted: Boolean
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
"""A `StoreAssetTransfer` edge in the connection."""
|
|
1965
|
+
type StoreAssetTransfersEdge {
|
|
1966
|
+
"""A cursor for use in pagination."""
|
|
1967
|
+
cursor: Cursor
|
|
1968
|
+
|
|
1969
|
+
"""The `StoreAssetTransfer` at the end of the edge."""
|
|
1970
|
+
node: StoreAssetTransfer!
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
"""Methods to use when ordering `StoreAssetTransfer`."""
|
|
1974
|
+
enum StoreAssetTransfersOrderBy {
|
|
1975
|
+
NATURAL
|
|
1976
|
+
FROM_ASC
|
|
1977
|
+
FROM_DESC
|
|
1978
|
+
TO_ASC
|
|
1979
|
+
TO_DESC
|
|
1980
|
+
AMOUNT_ASC
|
|
1981
|
+
AMOUNT_DESC
|
|
1982
|
+
ASSET_ID_ASC
|
|
1983
|
+
ASSET_ID_DESC
|
|
1984
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
1985
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
1986
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
1987
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
1988
|
+
LAST_UPDATE_DIGEST_ASC
|
|
1989
|
+
LAST_UPDATE_DIGEST_DESC
|
|
1990
|
+
IS_DELETED_ASC
|
|
1991
|
+
IS_DELETED_DESC
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
"""
|
|
1995
|
+
A condition to be used against `StoreAssetTransfer` object types. All fields are
|
|
1996
|
+
tested for equality and combined with a logical ‘and.’
|
|
1997
|
+
"""
|
|
1998
|
+
input StoreAssetTransferCondition {
|
|
1999
|
+
"""Checks for equality with the object’s `from` field."""
|
|
2000
|
+
from: String
|
|
2001
|
+
|
|
2002
|
+
"""Checks for equality with the object’s `to` field."""
|
|
2003
|
+
to: String
|
|
2004
|
+
|
|
2005
|
+
"""Checks for equality with the object’s `amount` field."""
|
|
2006
|
+
amount: String
|
|
2007
|
+
|
|
2008
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
2009
|
+
assetId: String
|
|
2010
|
+
|
|
2011
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2012
|
+
createdAtTimestampMs: BigInt
|
|
2013
|
+
|
|
2014
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2015
|
+
updatedAtTimestampMs: BigInt
|
|
2016
|
+
|
|
2017
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2018
|
+
lastUpdateDigest: String
|
|
2019
|
+
|
|
2020
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2021
|
+
isDeleted: Boolean
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
"""
|
|
2025
|
+
A filter to be used against `StoreAssetTransfer` object types. All fields are combined with a logical ‘and.’
|
|
2026
|
+
"""
|
|
2027
|
+
input StoreAssetTransferFilter {
|
|
2028
|
+
"""Filter by the object’s `from` field."""
|
|
2029
|
+
from: StringFilter
|
|
2030
|
+
|
|
2031
|
+
"""Filter by the object’s `to` field."""
|
|
2032
|
+
to: StringFilter
|
|
2033
|
+
|
|
2034
|
+
"""Filter by the object’s `amount` field."""
|
|
2035
|
+
amount: StringFilter
|
|
2036
|
+
|
|
2037
|
+
"""Filter by the object’s `assetId` field."""
|
|
2038
|
+
assetId: StringFilter
|
|
2039
|
+
|
|
2040
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2041
|
+
createdAtTimestampMs: BigIntFilter
|
|
2042
|
+
|
|
2043
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2044
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2045
|
+
|
|
2046
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2047
|
+
lastUpdateDigest: StringFilter
|
|
2048
|
+
|
|
2049
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2050
|
+
isDeleted: BooleanFilter
|
|
2051
|
+
|
|
2052
|
+
"""Checks for all expressions in this list."""
|
|
2053
|
+
and: [StoreAssetTransferFilter!]
|
|
2054
|
+
|
|
2055
|
+
"""Checks for any expressions in this list."""
|
|
2056
|
+
or: [StoreAssetTransferFilter!]
|
|
2057
|
+
|
|
2058
|
+
"""Negates the expression."""
|
|
2059
|
+
not: StoreAssetTransferFilter
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
"""A connection to a list of `StoreAssetUnwrap` values."""
|
|
2063
|
+
type StoreAssetUnwrapsConnection {
|
|
2064
|
+
"""A list of `StoreAssetUnwrap` objects."""
|
|
2065
|
+
nodes: [StoreAssetUnwrap!]!
|
|
2066
|
+
|
|
2067
|
+
"""
|
|
2068
|
+
A list of edges which contains the `StoreAssetUnwrap` and cursor to aid in pagination.
|
|
2069
|
+
"""
|
|
2070
|
+
edges: [StoreAssetUnwrapsEdge!]!
|
|
2071
|
+
|
|
2072
|
+
"""Information to aid in pagination."""
|
|
2073
|
+
pageInfo: PageInfo!
|
|
2074
|
+
|
|
2075
|
+
"""
|
|
2076
|
+
The count of *all* `StoreAssetUnwrap` you could get from the connection.
|
|
2077
|
+
"""
|
|
2078
|
+
totalCount: Int!
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
type StoreAssetUnwrap {
|
|
2082
|
+
from: String
|
|
2083
|
+
to: String
|
|
2084
|
+
amount: String
|
|
2085
|
+
coinType: String
|
|
2086
|
+
assetId: String
|
|
2087
|
+
createdAtTimestampMs: BigInt
|
|
2088
|
+
updatedAtTimestampMs: BigInt
|
|
2089
|
+
lastUpdateDigest: String
|
|
2090
|
+
isDeleted: Boolean
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
"""A `StoreAssetUnwrap` edge in the connection."""
|
|
2094
|
+
type StoreAssetUnwrapsEdge {
|
|
2095
|
+
"""A cursor for use in pagination."""
|
|
2096
|
+
cursor: Cursor
|
|
2097
|
+
|
|
2098
|
+
"""The `StoreAssetUnwrap` at the end of the edge."""
|
|
2099
|
+
node: StoreAssetUnwrap!
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
"""Methods to use when ordering `StoreAssetUnwrap`."""
|
|
2103
|
+
enum StoreAssetUnwrapsOrderBy {
|
|
2104
|
+
NATURAL
|
|
2105
|
+
FROM_ASC
|
|
2106
|
+
FROM_DESC
|
|
2107
|
+
TO_ASC
|
|
2108
|
+
TO_DESC
|
|
2109
|
+
AMOUNT_ASC
|
|
2110
|
+
AMOUNT_DESC
|
|
2111
|
+
COIN_TYPE_ASC
|
|
2112
|
+
COIN_TYPE_DESC
|
|
2113
|
+
ASSET_ID_ASC
|
|
2114
|
+
ASSET_ID_DESC
|
|
2115
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
2116
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
2117
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
2118
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
2119
|
+
LAST_UPDATE_DIGEST_ASC
|
|
2120
|
+
LAST_UPDATE_DIGEST_DESC
|
|
2121
|
+
IS_DELETED_ASC
|
|
2122
|
+
IS_DELETED_DESC
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
"""
|
|
2126
|
+
A condition to be used against `StoreAssetUnwrap` object types. All fields are
|
|
2127
|
+
tested for equality and combined with a logical ‘and.’
|
|
2128
|
+
"""
|
|
2129
|
+
input StoreAssetUnwrapCondition {
|
|
2130
|
+
"""Checks for equality with the object’s `from` field."""
|
|
2131
|
+
from: String
|
|
2132
|
+
|
|
2133
|
+
"""Checks for equality with the object’s `to` field."""
|
|
2134
|
+
to: String
|
|
2135
|
+
|
|
2136
|
+
"""Checks for equality with the object’s `amount` field."""
|
|
2137
|
+
amount: String
|
|
2138
|
+
|
|
2139
|
+
"""Checks for equality with the object’s `coinType` field."""
|
|
2140
|
+
coinType: String
|
|
2141
|
+
|
|
2142
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
2143
|
+
assetId: String
|
|
2144
|
+
|
|
2145
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2146
|
+
createdAtTimestampMs: BigInt
|
|
2147
|
+
|
|
2148
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2149
|
+
updatedAtTimestampMs: BigInt
|
|
2150
|
+
|
|
2151
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2152
|
+
lastUpdateDigest: String
|
|
2153
|
+
|
|
2154
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2155
|
+
isDeleted: Boolean
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
"""
|
|
2159
|
+
A filter to be used against `StoreAssetUnwrap` object types. All fields are combined with a logical ‘and.’
|
|
2160
|
+
"""
|
|
2161
|
+
input StoreAssetUnwrapFilter {
|
|
2162
|
+
"""Filter by the object’s `from` field."""
|
|
2163
|
+
from: StringFilter
|
|
2164
|
+
|
|
2165
|
+
"""Filter by the object’s `to` field."""
|
|
2166
|
+
to: StringFilter
|
|
2167
|
+
|
|
2168
|
+
"""Filter by the object’s `amount` field."""
|
|
2169
|
+
amount: StringFilter
|
|
2170
|
+
|
|
2171
|
+
"""Filter by the object’s `coinType` field."""
|
|
2172
|
+
coinType: StringFilter
|
|
2173
|
+
|
|
2174
|
+
"""Filter by the object’s `assetId` field."""
|
|
2175
|
+
assetId: StringFilter
|
|
2176
|
+
|
|
2177
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2178
|
+
createdAtTimestampMs: BigIntFilter
|
|
2179
|
+
|
|
2180
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2181
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2182
|
+
|
|
2183
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2184
|
+
lastUpdateDigest: StringFilter
|
|
2185
|
+
|
|
2186
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2187
|
+
isDeleted: BooleanFilter
|
|
2188
|
+
|
|
2189
|
+
"""Checks for all expressions in this list."""
|
|
2190
|
+
and: [StoreAssetUnwrapFilter!]
|
|
2191
|
+
|
|
2192
|
+
"""Checks for any expressions in this list."""
|
|
2193
|
+
or: [StoreAssetUnwrapFilter!]
|
|
2194
|
+
|
|
2195
|
+
"""Negates the expression."""
|
|
2196
|
+
not: StoreAssetUnwrapFilter
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
"""A connection to a list of `StoreAssetWrap` values."""
|
|
2200
|
+
type StoreAssetWrapsConnection {
|
|
2201
|
+
"""A list of `StoreAssetWrap` objects."""
|
|
2202
|
+
nodes: [StoreAssetWrap!]!
|
|
2203
|
+
|
|
2204
|
+
"""
|
|
2205
|
+
A list of edges which contains the `StoreAssetWrap` and cursor to aid in pagination.
|
|
2206
|
+
"""
|
|
2207
|
+
edges: [StoreAssetWrapsEdge!]!
|
|
2208
|
+
|
|
2209
|
+
"""Information to aid in pagination."""
|
|
2210
|
+
pageInfo: PageInfo!
|
|
2211
|
+
|
|
2212
|
+
"""The count of *all* `StoreAssetWrap` you could get from the connection."""
|
|
2213
|
+
totalCount: Int!
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
type StoreAssetWrap {
|
|
2217
|
+
from: String
|
|
2218
|
+
to: String
|
|
2219
|
+
amount: String
|
|
2220
|
+
coinType: String
|
|
2221
|
+
assetId: String
|
|
2222
|
+
createdAtTimestampMs: BigInt
|
|
2223
|
+
updatedAtTimestampMs: BigInt
|
|
2224
|
+
lastUpdateDigest: String
|
|
2225
|
+
isDeleted: Boolean
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
"""A `StoreAssetWrap` edge in the connection."""
|
|
2229
|
+
type StoreAssetWrapsEdge {
|
|
2230
|
+
"""A cursor for use in pagination."""
|
|
2231
|
+
cursor: Cursor
|
|
2232
|
+
|
|
2233
|
+
"""The `StoreAssetWrap` at the end of the edge."""
|
|
2234
|
+
node: StoreAssetWrap!
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
"""Methods to use when ordering `StoreAssetWrap`."""
|
|
2238
|
+
enum StoreAssetWrapsOrderBy {
|
|
2239
|
+
NATURAL
|
|
2240
|
+
FROM_ASC
|
|
2241
|
+
FROM_DESC
|
|
2242
|
+
TO_ASC
|
|
2243
|
+
TO_DESC
|
|
2244
|
+
AMOUNT_ASC
|
|
2245
|
+
AMOUNT_DESC
|
|
2246
|
+
COIN_TYPE_ASC
|
|
2247
|
+
COIN_TYPE_DESC
|
|
2248
|
+
ASSET_ID_ASC
|
|
2249
|
+
ASSET_ID_DESC
|
|
2250
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
2251
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
2252
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
2253
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
2254
|
+
LAST_UPDATE_DIGEST_ASC
|
|
2255
|
+
LAST_UPDATE_DIGEST_DESC
|
|
2256
|
+
IS_DELETED_ASC
|
|
2257
|
+
IS_DELETED_DESC
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
"""
|
|
2261
|
+
A condition to be used against `StoreAssetWrap` object types. All fields are
|
|
2262
|
+
tested for equality and combined with a logical ‘and.’
|
|
2263
|
+
"""
|
|
2264
|
+
input StoreAssetWrapCondition {
|
|
2265
|
+
"""Checks for equality with the object’s `from` field."""
|
|
2266
|
+
from: String
|
|
2267
|
+
|
|
2268
|
+
"""Checks for equality with the object’s `to` field."""
|
|
2269
|
+
to: String
|
|
2270
|
+
|
|
2271
|
+
"""Checks for equality with the object’s `amount` field."""
|
|
2272
|
+
amount: String
|
|
2273
|
+
|
|
2274
|
+
"""Checks for equality with the object’s `coinType` field."""
|
|
2275
|
+
coinType: String
|
|
2276
|
+
|
|
2277
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
2278
|
+
assetId: String
|
|
2279
|
+
|
|
2280
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2281
|
+
createdAtTimestampMs: BigInt
|
|
2282
|
+
|
|
2283
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2284
|
+
updatedAtTimestampMs: BigInt
|
|
2285
|
+
|
|
2286
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2287
|
+
lastUpdateDigest: String
|
|
2288
|
+
|
|
2289
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2290
|
+
isDeleted: Boolean
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
"""
|
|
2294
|
+
A filter to be used against `StoreAssetWrap` object types. All fields are combined with a logical ‘and.’
|
|
2295
|
+
"""
|
|
2296
|
+
input StoreAssetWrapFilter {
|
|
2297
|
+
"""Filter by the object’s `from` field."""
|
|
2298
|
+
from: StringFilter
|
|
2299
|
+
|
|
2300
|
+
"""Filter by the object’s `to` field."""
|
|
2301
|
+
to: StringFilter
|
|
2302
|
+
|
|
2303
|
+
"""Filter by the object’s `amount` field."""
|
|
2304
|
+
amount: StringFilter
|
|
2305
|
+
|
|
2306
|
+
"""Filter by the object’s `coinType` field."""
|
|
2307
|
+
coinType: StringFilter
|
|
2308
|
+
|
|
2309
|
+
"""Filter by the object’s `assetId` field."""
|
|
2310
|
+
assetId: StringFilter
|
|
2311
|
+
|
|
2312
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2313
|
+
createdAtTimestampMs: BigIntFilter
|
|
2314
|
+
|
|
2315
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2316
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2317
|
+
|
|
2318
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2319
|
+
lastUpdateDigest: StringFilter
|
|
2320
|
+
|
|
2321
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2322
|
+
isDeleted: BooleanFilter
|
|
2323
|
+
|
|
2324
|
+
"""Checks for all expressions in this list."""
|
|
2325
|
+
and: [StoreAssetWrapFilter!]
|
|
2326
|
+
|
|
2327
|
+
"""Checks for any expressions in this list."""
|
|
2328
|
+
or: [StoreAssetWrapFilter!]
|
|
2329
|
+
|
|
2330
|
+
"""Negates the expression."""
|
|
2331
|
+
not: StoreAssetWrapFilter
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
"""A connection to a list of `StoreAssetWrapper` values."""
|
|
2335
|
+
type StoreAssetWrappersConnection {
|
|
2336
|
+
"""A list of `StoreAssetWrapper` objects."""
|
|
2337
|
+
nodes: [StoreAssetWrapper!]!
|
|
2338
|
+
|
|
2339
|
+
"""
|
|
2340
|
+
A list of edges which contains the `StoreAssetWrapper` and cursor to aid in pagination.
|
|
2341
|
+
"""
|
|
2342
|
+
edges: [StoreAssetWrappersEdge!]!
|
|
2343
|
+
|
|
2344
|
+
"""Information to aid in pagination."""
|
|
2345
|
+
pageInfo: PageInfo!
|
|
2346
|
+
|
|
2347
|
+
"""
|
|
2348
|
+
The count of *all* `StoreAssetWrapper` you could get from the connection.
|
|
2349
|
+
"""
|
|
2350
|
+
totalCount: Int!
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2353
|
+
type StoreAssetWrapper implements Node {
|
|
2354
|
+
"""
|
|
2355
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
2356
|
+
"""
|
|
2357
|
+
nodeId: ID!
|
|
2358
|
+
coinType: String!
|
|
2359
|
+
assetId: String
|
|
2360
|
+
createdAtTimestampMs: BigInt
|
|
2361
|
+
updatedAtTimestampMs: BigInt
|
|
2362
|
+
lastUpdateDigest: String
|
|
2363
|
+
isDeleted: Boolean
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
"""A `StoreAssetWrapper` edge in the connection."""
|
|
2367
|
+
type StoreAssetWrappersEdge {
|
|
2368
|
+
"""A cursor for use in pagination."""
|
|
2369
|
+
cursor: Cursor
|
|
2370
|
+
|
|
2371
|
+
"""The `StoreAssetWrapper` at the end of the edge."""
|
|
2372
|
+
node: StoreAssetWrapper!
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
"""Methods to use when ordering `StoreAssetWrapper`."""
|
|
2376
|
+
enum StoreAssetWrappersOrderBy {
|
|
2377
|
+
NATURAL
|
|
2378
|
+
COIN_TYPE_ASC
|
|
2379
|
+
COIN_TYPE_DESC
|
|
2380
|
+
ASSET_ID_ASC
|
|
2381
|
+
ASSET_ID_DESC
|
|
2382
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
2383
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
2384
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
2385
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
2386
|
+
LAST_UPDATE_DIGEST_ASC
|
|
2387
|
+
LAST_UPDATE_DIGEST_DESC
|
|
2388
|
+
IS_DELETED_ASC
|
|
2389
|
+
IS_DELETED_DESC
|
|
2390
|
+
PRIMARY_KEY_ASC
|
|
2391
|
+
PRIMARY_KEY_DESC
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
"""
|
|
2395
|
+
A condition to be used against `StoreAssetWrapper` object types. All fields are
|
|
2396
|
+
tested for equality and combined with a logical ‘and.’
|
|
2397
|
+
"""
|
|
2398
|
+
input StoreAssetWrapperCondition {
|
|
2399
|
+
"""Checks for equality with the object’s `coinType` field."""
|
|
2400
|
+
coinType: String
|
|
2401
|
+
|
|
2402
|
+
"""Checks for equality with the object’s `assetId` field."""
|
|
2403
|
+
assetId: String
|
|
2404
|
+
|
|
2405
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2406
|
+
createdAtTimestampMs: BigInt
|
|
2407
|
+
|
|
2408
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2409
|
+
updatedAtTimestampMs: BigInt
|
|
2410
|
+
|
|
2411
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2412
|
+
lastUpdateDigest: String
|
|
2413
|
+
|
|
2414
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2415
|
+
isDeleted: Boolean
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
"""
|
|
2419
|
+
A filter to be used against `StoreAssetWrapper` object types. All fields are combined with a logical ‘and.’
|
|
2420
|
+
"""
|
|
2421
|
+
input StoreAssetWrapperFilter {
|
|
2422
|
+
"""Filter by the object’s `coinType` field."""
|
|
2423
|
+
coinType: StringFilter
|
|
2424
|
+
|
|
2425
|
+
"""Filter by the object’s `assetId` field."""
|
|
2426
|
+
assetId: StringFilter
|
|
2427
|
+
|
|
2428
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2429
|
+
createdAtTimestampMs: BigIntFilter
|
|
2430
|
+
|
|
2431
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2432
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2433
|
+
|
|
2434
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2435
|
+
lastUpdateDigest: StringFilter
|
|
2436
|
+
|
|
2437
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2438
|
+
isDeleted: BooleanFilter
|
|
2439
|
+
|
|
2440
|
+
"""Checks for all expressions in this list."""
|
|
2441
|
+
and: [StoreAssetWrapperFilter!]
|
|
2442
|
+
|
|
2443
|
+
"""Checks for any expressions in this list."""
|
|
2444
|
+
or: [StoreAssetWrapperFilter!]
|
|
2445
|
+
|
|
2446
|
+
"""Negates the expression."""
|
|
2447
|
+
not: StoreAssetWrapperFilter
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
"""A connection to a list of `StoreDappFeeConfig` values."""
|
|
2451
|
+
type StoreDappFeeConfigsConnection {
|
|
2452
|
+
"""A list of `StoreDappFeeConfig` objects."""
|
|
2453
|
+
nodes: [StoreDappFeeConfig!]!
|
|
2454
|
+
|
|
2455
|
+
"""
|
|
2456
|
+
A list of edges which contains the `StoreDappFeeConfig` and cursor to aid in pagination.
|
|
2457
|
+
"""
|
|
2458
|
+
edges: [StoreDappFeeConfigsEdge!]!
|
|
2459
|
+
|
|
2460
|
+
"""Information to aid in pagination."""
|
|
2461
|
+
pageInfo: PageInfo!
|
|
2462
|
+
|
|
2463
|
+
"""
|
|
2464
|
+
The count of *all* `StoreDappFeeConfig` you could get from the connection.
|
|
2465
|
+
"""
|
|
2466
|
+
totalCount: Int!
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
type StoreDappFeeConfig implements Node {
|
|
2470
|
+
"""
|
|
2471
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
2472
|
+
"""
|
|
2473
|
+
nodeId: ID!
|
|
2474
|
+
uniqueResourceId: Int!
|
|
2475
|
+
freeCredit: String
|
|
2476
|
+
baseFee: String
|
|
2477
|
+
byteFee: String
|
|
2478
|
+
createdAtTimestampMs: BigInt
|
|
2479
|
+
updatedAtTimestampMs: BigInt
|
|
2480
|
+
lastUpdateDigest: String
|
|
2481
|
+
isDeleted: Boolean
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
"""A `StoreDappFeeConfig` edge in the connection."""
|
|
2485
|
+
type StoreDappFeeConfigsEdge {
|
|
2486
|
+
"""A cursor for use in pagination."""
|
|
2487
|
+
cursor: Cursor
|
|
2488
|
+
|
|
2489
|
+
"""The `StoreDappFeeConfig` at the end of the edge."""
|
|
2490
|
+
node: StoreDappFeeConfig!
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
"""Methods to use when ordering `StoreDappFeeConfig`."""
|
|
2494
|
+
enum StoreDappFeeConfigsOrderBy {
|
|
2495
|
+
NATURAL
|
|
2496
|
+
UNIQUE_RESOURCE_ID_ASC
|
|
2497
|
+
UNIQUE_RESOURCE_ID_DESC
|
|
2498
|
+
FREE_CREDIT_ASC
|
|
2499
|
+
FREE_CREDIT_DESC
|
|
2500
|
+
BASE_FEE_ASC
|
|
2501
|
+
BASE_FEE_DESC
|
|
2502
|
+
BYTE_FEE_ASC
|
|
2503
|
+
BYTE_FEE_DESC
|
|
2504
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
2505
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
2506
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
2507
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
2508
|
+
LAST_UPDATE_DIGEST_ASC
|
|
2509
|
+
LAST_UPDATE_DIGEST_DESC
|
|
2510
|
+
IS_DELETED_ASC
|
|
2511
|
+
IS_DELETED_DESC
|
|
2512
|
+
PRIMARY_KEY_ASC
|
|
2513
|
+
PRIMARY_KEY_DESC
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
"""
|
|
2517
|
+
A condition to be used against `StoreDappFeeConfig` object types. All fields are
|
|
2518
|
+
tested for equality and combined with a logical ‘and.’
|
|
2519
|
+
"""
|
|
2520
|
+
input StoreDappFeeConfigCondition {
|
|
2521
|
+
"""Checks for equality with the object’s `uniqueResourceId` field."""
|
|
2522
|
+
uniqueResourceId: Int
|
|
2523
|
+
|
|
2524
|
+
"""Checks for equality with the object’s `freeCredit` field."""
|
|
2525
|
+
freeCredit: String
|
|
2526
|
+
|
|
2527
|
+
"""Checks for equality with the object’s `baseFee` field."""
|
|
2528
|
+
baseFee: String
|
|
2529
|
+
|
|
2530
|
+
"""Checks for equality with the object’s `byteFee` field."""
|
|
2531
|
+
byteFee: String
|
|
2532
|
+
|
|
2533
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2534
|
+
createdAtTimestampMs: BigInt
|
|
2535
|
+
|
|
2536
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2537
|
+
updatedAtTimestampMs: BigInt
|
|
2538
|
+
|
|
2539
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2540
|
+
lastUpdateDigest: String
|
|
2541
|
+
|
|
2542
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2543
|
+
isDeleted: Boolean
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
"""
|
|
2547
|
+
A filter to be used against `StoreDappFeeConfig` object types. All fields are combined with a logical ‘and.’
|
|
2548
|
+
"""
|
|
2549
|
+
input StoreDappFeeConfigFilter {
|
|
2550
|
+
"""Filter by the object’s `uniqueResourceId` field."""
|
|
2551
|
+
uniqueResourceId: IntFilter
|
|
2552
|
+
|
|
2553
|
+
"""Filter by the object’s `freeCredit` field."""
|
|
2554
|
+
freeCredit: StringFilter
|
|
2555
|
+
|
|
2556
|
+
"""Filter by the object’s `baseFee` field."""
|
|
2557
|
+
baseFee: StringFilter
|
|
2558
|
+
|
|
2559
|
+
"""Filter by the object’s `byteFee` field."""
|
|
2560
|
+
byteFee: StringFilter
|
|
2561
|
+
|
|
2562
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2563
|
+
createdAtTimestampMs: BigIntFilter
|
|
2564
|
+
|
|
2565
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2566
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2567
|
+
|
|
2568
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2569
|
+
lastUpdateDigest: StringFilter
|
|
2570
|
+
|
|
2571
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2572
|
+
isDeleted: BooleanFilter
|
|
2573
|
+
|
|
2574
|
+
"""Checks for all expressions in this list."""
|
|
2575
|
+
and: [StoreDappFeeConfigFilter!]
|
|
2576
|
+
|
|
2577
|
+
"""Checks for any expressions in this list."""
|
|
2578
|
+
or: [StoreDappFeeConfigFilter!]
|
|
2579
|
+
|
|
2580
|
+
"""Negates the expression."""
|
|
2581
|
+
not: StoreDappFeeConfigFilter
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
"""A connection to a list of `StoreDappFeeState` values."""
|
|
2585
|
+
type StoreDappFeeStatesConnection {
|
|
2586
|
+
"""A list of `StoreDappFeeState` objects."""
|
|
2587
|
+
nodes: [StoreDappFeeState!]!
|
|
2588
|
+
|
|
2589
|
+
"""
|
|
2590
|
+
A list of edges which contains the `StoreDappFeeState` and cursor to aid in pagination.
|
|
2591
|
+
"""
|
|
2592
|
+
edges: [StoreDappFeeStatesEdge!]!
|
|
2593
|
+
|
|
2594
|
+
"""Information to aid in pagination."""
|
|
2595
|
+
pageInfo: PageInfo!
|
|
2596
|
+
|
|
2597
|
+
"""
|
|
2598
|
+
The count of *all* `StoreDappFeeState` you could get from the connection.
|
|
2599
|
+
"""
|
|
2600
|
+
totalCount: Int!
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
type StoreDappFeeState implements Node {
|
|
2604
|
+
"""
|
|
2605
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
2606
|
+
"""
|
|
2607
|
+
nodeId: ID!
|
|
2608
|
+
dappKey: String!
|
|
2609
|
+
baseFee: String
|
|
2610
|
+
byteFee: String
|
|
2611
|
+
freeCredit: String
|
|
2612
|
+
totalBytesSize: String
|
|
2613
|
+
totalRecharged: String
|
|
2614
|
+
totalPaid: String
|
|
2615
|
+
totalSetCount: String
|
|
2616
|
+
createdAtTimestampMs: BigInt
|
|
2617
|
+
updatedAtTimestampMs: BigInt
|
|
2618
|
+
lastUpdateDigest: String
|
|
2619
|
+
isDeleted: Boolean
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
"""A `StoreDappFeeState` edge in the connection."""
|
|
2623
|
+
type StoreDappFeeStatesEdge {
|
|
2624
|
+
"""A cursor for use in pagination."""
|
|
2625
|
+
cursor: Cursor
|
|
2626
|
+
|
|
2627
|
+
"""The `StoreDappFeeState` at the end of the edge."""
|
|
2628
|
+
node: StoreDappFeeState!
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
"""Methods to use when ordering `StoreDappFeeState`."""
|
|
2632
|
+
enum StoreDappFeeStatesOrderBy {
|
|
2633
|
+
NATURAL
|
|
2634
|
+
DAPP_KEY_ASC
|
|
2635
|
+
DAPP_KEY_DESC
|
|
2636
|
+
BASE_FEE_ASC
|
|
2637
|
+
BASE_FEE_DESC
|
|
2638
|
+
BYTE_FEE_ASC
|
|
2639
|
+
BYTE_FEE_DESC
|
|
2640
|
+
FREE_CREDIT_ASC
|
|
2641
|
+
FREE_CREDIT_DESC
|
|
2642
|
+
TOTAL_BYTES_SIZE_ASC
|
|
2643
|
+
TOTAL_BYTES_SIZE_DESC
|
|
2644
|
+
TOTAL_RECHARGED_ASC
|
|
2645
|
+
TOTAL_RECHARGED_DESC
|
|
2646
|
+
TOTAL_PAID_ASC
|
|
2647
|
+
TOTAL_PAID_DESC
|
|
2648
|
+
TOTAL_SET_COUNT_ASC
|
|
2649
|
+
TOTAL_SET_COUNT_DESC
|
|
2650
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
2651
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
2652
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
2653
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
2654
|
+
LAST_UPDATE_DIGEST_ASC
|
|
2655
|
+
LAST_UPDATE_DIGEST_DESC
|
|
2656
|
+
IS_DELETED_ASC
|
|
2657
|
+
IS_DELETED_DESC
|
|
2658
|
+
PRIMARY_KEY_ASC
|
|
2659
|
+
PRIMARY_KEY_DESC
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
"""
|
|
2663
|
+
A condition to be used against `StoreDappFeeState` object types. All fields are
|
|
2664
|
+
tested for equality and combined with a logical ‘and.’
|
|
2665
|
+
"""
|
|
2666
|
+
input StoreDappFeeStateCondition {
|
|
2667
|
+
"""Checks for equality with the object’s `dappKey` field."""
|
|
2668
|
+
dappKey: String
|
|
2669
|
+
|
|
2670
|
+
"""Checks for equality with the object’s `baseFee` field."""
|
|
2671
|
+
baseFee: String
|
|
2672
|
+
|
|
2673
|
+
"""Checks for equality with the object’s `byteFee` field."""
|
|
2674
|
+
byteFee: String
|
|
2675
|
+
|
|
2676
|
+
"""Checks for equality with the object’s `freeCredit` field."""
|
|
2677
|
+
freeCredit: String
|
|
2678
|
+
|
|
2679
|
+
"""Checks for equality with the object’s `totalBytesSize` field."""
|
|
2680
|
+
totalBytesSize: String
|
|
2681
|
+
|
|
2682
|
+
"""Checks for equality with the object’s `totalRecharged` field."""
|
|
2683
|
+
totalRecharged: String
|
|
2684
|
+
|
|
2685
|
+
"""Checks for equality with the object’s `totalPaid` field."""
|
|
2686
|
+
totalPaid: String
|
|
2687
|
+
|
|
2688
|
+
"""Checks for equality with the object’s `totalSetCount` field."""
|
|
2689
|
+
totalSetCount: String
|
|
2690
|
+
|
|
2691
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2692
|
+
createdAtTimestampMs: BigInt
|
|
2693
|
+
|
|
2694
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2695
|
+
updatedAtTimestampMs: BigInt
|
|
2696
|
+
|
|
2697
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2698
|
+
lastUpdateDigest: String
|
|
2699
|
+
|
|
2700
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2701
|
+
isDeleted: Boolean
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
"""
|
|
2705
|
+
A filter to be used against `StoreDappFeeState` object types. All fields are combined with a logical ‘and.’
|
|
2706
|
+
"""
|
|
2707
|
+
input StoreDappFeeStateFilter {
|
|
2708
|
+
"""Filter by the object’s `dappKey` field."""
|
|
2709
|
+
dappKey: StringFilter
|
|
2710
|
+
|
|
2711
|
+
"""Filter by the object’s `baseFee` field."""
|
|
2712
|
+
baseFee: StringFilter
|
|
2713
|
+
|
|
2714
|
+
"""Filter by the object’s `byteFee` field."""
|
|
2715
|
+
byteFee: StringFilter
|
|
2716
|
+
|
|
2717
|
+
"""Filter by the object’s `freeCredit` field."""
|
|
2718
|
+
freeCredit: StringFilter
|
|
2719
|
+
|
|
2720
|
+
"""Filter by the object’s `totalBytesSize` field."""
|
|
2721
|
+
totalBytesSize: StringFilter
|
|
2722
|
+
|
|
2723
|
+
"""Filter by the object’s `totalRecharged` field."""
|
|
2724
|
+
totalRecharged: StringFilter
|
|
2725
|
+
|
|
2726
|
+
"""Filter by the object’s `totalPaid` field."""
|
|
2727
|
+
totalPaid: StringFilter
|
|
2728
|
+
|
|
2729
|
+
"""Filter by the object’s `totalSetCount` field."""
|
|
2730
|
+
totalSetCount: StringFilter
|
|
2731
|
+
|
|
2732
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2733
|
+
createdAtTimestampMs: BigIntFilter
|
|
2734
|
+
|
|
2735
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2736
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2737
|
+
|
|
2738
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2739
|
+
lastUpdateDigest: StringFilter
|
|
2740
|
+
|
|
2741
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2742
|
+
isDeleted: BooleanFilter
|
|
2743
|
+
|
|
2744
|
+
"""Checks for all expressions in this list."""
|
|
2745
|
+
and: [StoreDappFeeStateFilter!]
|
|
2746
|
+
|
|
2747
|
+
"""Checks for any expressions in this list."""
|
|
2748
|
+
or: [StoreDappFeeStateFilter!]
|
|
2749
|
+
|
|
2750
|
+
"""Negates the expression."""
|
|
2751
|
+
not: StoreDappFeeStateFilter
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
"""A connection to a list of `StoreDappMetadatum` values."""
|
|
2755
|
+
type StoreDappMetadataConnection {
|
|
2756
|
+
"""A list of `StoreDappMetadatum` objects."""
|
|
2757
|
+
nodes: [StoreDappMetadatum!]!
|
|
2758
|
+
|
|
2759
|
+
"""
|
|
2760
|
+
A list of edges which contains the `StoreDappMetadatum` and cursor to aid in pagination.
|
|
2761
|
+
"""
|
|
2762
|
+
edges: [StoreDappMetadataEdge!]!
|
|
2763
|
+
|
|
2764
|
+
"""Information to aid in pagination."""
|
|
2765
|
+
pageInfo: PageInfo!
|
|
2766
|
+
|
|
2767
|
+
"""
|
|
2768
|
+
The count of *all* `StoreDappMetadatum` you could get from the connection.
|
|
2769
|
+
"""
|
|
2770
|
+
totalCount: Int!
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
type StoreDappMetadatum implements Node {
|
|
2774
|
+
"""
|
|
2775
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
2776
|
+
"""
|
|
2777
|
+
nodeId: ID!
|
|
2778
|
+
dappKey: String!
|
|
2779
|
+
name: String
|
|
2780
|
+
description: String
|
|
2781
|
+
websiteUrl: String
|
|
2782
|
+
coverUrl: [String]
|
|
2783
|
+
partners: [String]
|
|
2784
|
+
packageIds: [String]
|
|
2785
|
+
createdAt: BigInt
|
|
2786
|
+
admin: String
|
|
2787
|
+
version: Int
|
|
2788
|
+
pausable: Boolean
|
|
2789
|
+
createdAtTimestampMs: BigInt
|
|
2790
|
+
updatedAtTimestampMs: BigInt
|
|
2791
|
+
lastUpdateDigest: String
|
|
2792
|
+
isDeleted: Boolean
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
"""A `StoreDappMetadatum` edge in the connection."""
|
|
2796
|
+
type StoreDappMetadataEdge {
|
|
2797
|
+
"""A cursor for use in pagination."""
|
|
2798
|
+
cursor: Cursor
|
|
2799
|
+
|
|
2800
|
+
"""The `StoreDappMetadatum` at the end of the edge."""
|
|
2801
|
+
node: StoreDappMetadatum!
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
"""Methods to use when ordering `StoreDappMetadatum`."""
|
|
2805
|
+
enum StoreDappMetadataOrderBy {
|
|
2806
|
+
NATURAL
|
|
2807
|
+
DAPP_KEY_ASC
|
|
2808
|
+
DAPP_KEY_DESC
|
|
2809
|
+
NAME_ASC
|
|
2810
|
+
NAME_DESC
|
|
2811
|
+
DESCRIPTION_ASC
|
|
2812
|
+
DESCRIPTION_DESC
|
|
2813
|
+
WEBSITE_URL_ASC
|
|
2814
|
+
WEBSITE_URL_DESC
|
|
2815
|
+
COVER_URL_ASC
|
|
2816
|
+
COVER_URL_DESC
|
|
2817
|
+
PARTNERS_ASC
|
|
2818
|
+
PARTNERS_DESC
|
|
2819
|
+
PACKAGE_IDS_ASC
|
|
2820
|
+
PACKAGE_IDS_DESC
|
|
2821
|
+
CREATED_AT_ASC
|
|
2822
|
+
CREATED_AT_DESC
|
|
2823
|
+
ADMIN_ASC
|
|
2824
|
+
ADMIN_DESC
|
|
2825
|
+
VERSION_ASC
|
|
2826
|
+
VERSION_DESC
|
|
2827
|
+
PAUSABLE_ASC
|
|
2828
|
+
PAUSABLE_DESC
|
|
2829
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
2830
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
2831
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
2832
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
2833
|
+
LAST_UPDATE_DIGEST_ASC
|
|
2834
|
+
LAST_UPDATE_DIGEST_DESC
|
|
2835
|
+
IS_DELETED_ASC
|
|
2836
|
+
IS_DELETED_DESC
|
|
2837
|
+
PRIMARY_KEY_ASC
|
|
2838
|
+
PRIMARY_KEY_DESC
|
|
2839
|
+
}
|
|
2840
|
+
|
|
2841
|
+
"""
|
|
2842
|
+
A condition to be used against `StoreDappMetadatum` object types. All fields are
|
|
2843
|
+
tested for equality and combined with a logical ‘and.’
|
|
2844
|
+
"""
|
|
2845
|
+
input StoreDappMetadatumCondition {
|
|
2846
|
+
"""Checks for equality with the object’s `dappKey` field."""
|
|
2847
|
+
dappKey: String
|
|
2848
|
+
|
|
2849
|
+
"""Checks for equality with the object’s `name` field."""
|
|
2850
|
+
name: String
|
|
2851
|
+
|
|
2852
|
+
"""Checks for equality with the object’s `description` field."""
|
|
2853
|
+
description: String
|
|
2854
|
+
|
|
2855
|
+
"""Checks for equality with the object’s `websiteUrl` field."""
|
|
2856
|
+
websiteUrl: String
|
|
2857
|
+
|
|
2858
|
+
"""Checks for equality with the object’s `coverUrl` field."""
|
|
2859
|
+
coverUrl: [String]
|
|
2860
|
+
|
|
2861
|
+
"""Checks for equality with the object’s `partners` field."""
|
|
2862
|
+
partners: [String]
|
|
2863
|
+
|
|
2864
|
+
"""Checks for equality with the object’s `packageIds` field."""
|
|
2865
|
+
packageIds: [String]
|
|
2866
|
+
|
|
2867
|
+
"""Checks for equality with the object’s `createdAt` field."""
|
|
2868
|
+
createdAt: BigInt
|
|
2869
|
+
|
|
2870
|
+
"""Checks for equality with the object’s `admin` field."""
|
|
2871
|
+
admin: String
|
|
2872
|
+
|
|
2873
|
+
"""Checks for equality with the object’s `version` field."""
|
|
2874
|
+
version: Int
|
|
2875
|
+
|
|
2876
|
+
"""Checks for equality with the object’s `pausable` field."""
|
|
2877
|
+
pausable: Boolean
|
|
2878
|
+
|
|
2879
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
2880
|
+
createdAtTimestampMs: BigInt
|
|
2881
|
+
|
|
2882
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
2883
|
+
updatedAtTimestampMs: BigInt
|
|
2884
|
+
|
|
2885
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
2886
|
+
lastUpdateDigest: String
|
|
2887
|
+
|
|
2888
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
2889
|
+
isDeleted: Boolean
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
"""
|
|
2893
|
+
A filter to be used against `StoreDappMetadatum` object types. All fields are combined with a logical ‘and.’
|
|
2894
|
+
"""
|
|
2895
|
+
input StoreDappMetadatumFilter {
|
|
2896
|
+
"""Filter by the object’s `dappKey` field."""
|
|
2897
|
+
dappKey: StringFilter
|
|
2898
|
+
|
|
2899
|
+
"""Filter by the object’s `name` field."""
|
|
2900
|
+
name: StringFilter
|
|
2901
|
+
|
|
2902
|
+
"""Filter by the object’s `description` field."""
|
|
2903
|
+
description: StringFilter
|
|
2904
|
+
|
|
2905
|
+
"""Filter by the object’s `websiteUrl` field."""
|
|
2906
|
+
websiteUrl: StringFilter
|
|
2907
|
+
|
|
2908
|
+
"""Filter by the object’s `coverUrl` field."""
|
|
2909
|
+
coverUrl: StringListFilter
|
|
2910
|
+
|
|
2911
|
+
"""Filter by the object’s `partners` field."""
|
|
2912
|
+
partners: StringListFilter
|
|
2913
|
+
|
|
2914
|
+
"""Filter by the object’s `packageIds` field."""
|
|
2915
|
+
packageIds: StringListFilter
|
|
2916
|
+
|
|
2917
|
+
"""Filter by the object’s `createdAt` field."""
|
|
2918
|
+
createdAt: BigIntFilter
|
|
2919
|
+
|
|
2920
|
+
"""Filter by the object’s `admin` field."""
|
|
2921
|
+
admin: StringFilter
|
|
2922
|
+
|
|
2923
|
+
"""Filter by the object’s `version` field."""
|
|
2924
|
+
version: IntFilter
|
|
2925
|
+
|
|
2926
|
+
"""Filter by the object’s `pausable` field."""
|
|
2927
|
+
pausable: BooleanFilter
|
|
2928
|
+
|
|
2929
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
2930
|
+
createdAtTimestampMs: BigIntFilter
|
|
2931
|
+
|
|
2932
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
2933
|
+
updatedAtTimestampMs: BigIntFilter
|
|
2934
|
+
|
|
2935
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
2936
|
+
lastUpdateDigest: StringFilter
|
|
2937
|
+
|
|
2938
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
2939
|
+
isDeleted: BooleanFilter
|
|
2940
|
+
|
|
2941
|
+
"""Checks for all expressions in this list."""
|
|
2942
|
+
and: [StoreDappMetadatumFilter!]
|
|
2943
|
+
|
|
2944
|
+
"""Checks for any expressions in this list."""
|
|
2945
|
+
or: [StoreDappMetadatumFilter!]
|
|
2946
|
+
|
|
2947
|
+
"""Negates the expression."""
|
|
2948
|
+
not: StoreDappMetadatumFilter
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
"""
|
|
2952
|
+
A filter to be used against String List fields. All fields are combined with a logical ‘and.’
|
|
2953
|
+
"""
|
|
2954
|
+
input StringListFilter {
|
|
2955
|
+
"""
|
|
2956
|
+
Is null (if `true` is specified) or is not null (if `false` is specified).
|
|
2957
|
+
"""
|
|
2958
|
+
isNull: Boolean
|
|
2959
|
+
|
|
2960
|
+
"""Equal to the specified value."""
|
|
2961
|
+
equalTo: [String]
|
|
2962
|
+
|
|
2963
|
+
"""Not equal to the specified value."""
|
|
2964
|
+
notEqualTo: [String]
|
|
2965
|
+
|
|
2966
|
+
"""
|
|
2967
|
+
Not equal to the specified value, treating null like an ordinary value.
|
|
2968
|
+
"""
|
|
2969
|
+
distinctFrom: [String]
|
|
2970
|
+
|
|
2971
|
+
"""Equal to the specified value, treating null like an ordinary value."""
|
|
2972
|
+
notDistinctFrom: [String]
|
|
2973
|
+
|
|
2974
|
+
"""Less than the specified value."""
|
|
2975
|
+
lessThan: [String]
|
|
2976
|
+
|
|
2977
|
+
"""Less than or equal to the specified value."""
|
|
2978
|
+
lessThanOrEqualTo: [String]
|
|
2979
|
+
|
|
2980
|
+
"""Greater than the specified value."""
|
|
2981
|
+
greaterThan: [String]
|
|
2982
|
+
|
|
2983
|
+
"""Greater than or equal to the specified value."""
|
|
2984
|
+
greaterThanOrEqualTo: [String]
|
|
2985
|
+
|
|
2986
|
+
"""Contains the specified list of values."""
|
|
2987
|
+
contains: [String]
|
|
2988
|
+
|
|
2989
|
+
"""Contained by the specified list of values."""
|
|
2990
|
+
containedBy: [String]
|
|
2991
|
+
|
|
2992
|
+
"""Overlaps the specified list of values."""
|
|
2993
|
+
overlaps: [String]
|
|
2994
|
+
|
|
2995
|
+
"""Any array item is equal to the specified value."""
|
|
2996
|
+
anyEqualTo: String
|
|
2997
|
+
|
|
2998
|
+
"""Any array item is not equal to the specified value."""
|
|
2999
|
+
anyNotEqualTo: String
|
|
3000
|
+
|
|
3001
|
+
"""Any array item is less than the specified value."""
|
|
3002
|
+
anyLessThan: String
|
|
3003
|
+
|
|
3004
|
+
"""Any array item is less than or equal to the specified value."""
|
|
3005
|
+
anyLessThanOrEqualTo: String
|
|
3006
|
+
|
|
3007
|
+
"""Any array item is greater than the specified value."""
|
|
3008
|
+
anyGreaterThan: String
|
|
3009
|
+
|
|
3010
|
+
"""Any array item is greater than or equal to the specified value."""
|
|
3011
|
+
anyGreaterThanOrEqualTo: String
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
"""A connection to a list of `StoreDappProxy` values."""
|
|
3015
|
+
type StoreDappProxiesConnection {
|
|
3016
|
+
"""A list of `StoreDappProxy` objects."""
|
|
3017
|
+
nodes: [StoreDappProxy!]!
|
|
3018
|
+
|
|
3019
|
+
"""
|
|
3020
|
+
A list of edges which contains the `StoreDappProxy` and cursor to aid in pagination.
|
|
3021
|
+
"""
|
|
3022
|
+
edges: [StoreDappProxiesEdge!]!
|
|
3023
|
+
|
|
3024
|
+
"""Information to aid in pagination."""
|
|
3025
|
+
pageInfo: PageInfo!
|
|
3026
|
+
|
|
3027
|
+
"""The count of *all* `StoreDappProxy` you could get from the connection."""
|
|
3028
|
+
totalCount: Int!
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
type StoreDappProxy implements Node {
|
|
3032
|
+
"""
|
|
3033
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
3034
|
+
"""
|
|
3035
|
+
nodeId: ID!
|
|
3036
|
+
dappKey: String!
|
|
3037
|
+
delegator: String
|
|
3038
|
+
enabled: Boolean
|
|
3039
|
+
createdAtTimestampMs: BigInt
|
|
3040
|
+
updatedAtTimestampMs: BigInt
|
|
3041
|
+
lastUpdateDigest: String
|
|
3042
|
+
isDeleted: Boolean
|
|
3043
|
+
}
|
|
3044
|
+
|
|
3045
|
+
"""A `StoreDappProxy` edge in the connection."""
|
|
3046
|
+
type StoreDappProxiesEdge {
|
|
3047
|
+
"""A cursor for use in pagination."""
|
|
3048
|
+
cursor: Cursor
|
|
3049
|
+
|
|
3050
|
+
"""The `StoreDappProxy` at the end of the edge."""
|
|
3051
|
+
node: StoreDappProxy!
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
"""Methods to use when ordering `StoreDappProxy`."""
|
|
3055
|
+
enum StoreDappProxiesOrderBy {
|
|
3056
|
+
NATURAL
|
|
3057
|
+
DAPP_KEY_ASC
|
|
3058
|
+
DAPP_KEY_DESC
|
|
3059
|
+
DELEGATOR_ASC
|
|
3060
|
+
DELEGATOR_DESC
|
|
3061
|
+
ENABLED_ASC
|
|
3062
|
+
ENABLED_DESC
|
|
3063
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
3064
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
3065
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
3066
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
3067
|
+
LAST_UPDATE_DIGEST_ASC
|
|
3068
|
+
LAST_UPDATE_DIGEST_DESC
|
|
3069
|
+
IS_DELETED_ASC
|
|
3070
|
+
IS_DELETED_DESC
|
|
3071
|
+
PRIMARY_KEY_ASC
|
|
3072
|
+
PRIMARY_KEY_DESC
|
|
3073
|
+
}
|
|
3074
|
+
|
|
3075
|
+
"""
|
|
3076
|
+
A condition to be used against `StoreDappProxy` object types. All fields are
|
|
3077
|
+
tested for equality and combined with a logical ‘and.’
|
|
3078
|
+
"""
|
|
3079
|
+
input StoreDappProxyCondition {
|
|
3080
|
+
"""Checks for equality with the object’s `dappKey` field."""
|
|
3081
|
+
dappKey: String
|
|
3082
|
+
|
|
3083
|
+
"""Checks for equality with the object’s `delegator` field."""
|
|
3084
|
+
delegator: String
|
|
3085
|
+
|
|
3086
|
+
"""Checks for equality with the object’s `enabled` field."""
|
|
3087
|
+
enabled: Boolean
|
|
3088
|
+
|
|
3089
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
3090
|
+
createdAtTimestampMs: BigInt
|
|
3091
|
+
|
|
3092
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
3093
|
+
updatedAtTimestampMs: BigInt
|
|
3094
|
+
|
|
3095
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
3096
|
+
lastUpdateDigest: String
|
|
3097
|
+
|
|
3098
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
3099
|
+
isDeleted: Boolean
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
"""
|
|
3103
|
+
A filter to be used against `StoreDappProxy` object types. All fields are combined with a logical ‘and.’
|
|
3104
|
+
"""
|
|
3105
|
+
input StoreDappProxyFilter {
|
|
3106
|
+
"""Filter by the object’s `dappKey` field."""
|
|
3107
|
+
dappKey: StringFilter
|
|
3108
|
+
|
|
3109
|
+
"""Filter by the object’s `delegator` field."""
|
|
3110
|
+
delegator: StringFilter
|
|
3111
|
+
|
|
3112
|
+
"""Filter by the object’s `enabled` field."""
|
|
3113
|
+
enabled: BooleanFilter
|
|
3114
|
+
|
|
3115
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
3116
|
+
createdAtTimestampMs: BigIntFilter
|
|
3117
|
+
|
|
3118
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
3119
|
+
updatedAtTimestampMs: BigIntFilter
|
|
3120
|
+
|
|
3121
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
3122
|
+
lastUpdateDigest: StringFilter
|
|
3123
|
+
|
|
3124
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
3125
|
+
isDeleted: BooleanFilter
|
|
3126
|
+
|
|
3127
|
+
"""Checks for all expressions in this list."""
|
|
3128
|
+
and: [StoreDappProxyFilter!]
|
|
3129
|
+
|
|
3130
|
+
"""Checks for any expressions in this list."""
|
|
3131
|
+
or: [StoreDappProxyFilter!]
|
|
3132
|
+
|
|
3133
|
+
"""Negates the expression."""
|
|
3134
|
+
not: StoreDappProxyFilter
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
"""A connection to a list of `StoreDubheAssetId` values."""
|
|
3138
|
+
type StoreDubheAssetIdsConnection {
|
|
3139
|
+
"""A list of `StoreDubheAssetId` objects."""
|
|
3140
|
+
nodes: [StoreDubheAssetId!]!
|
|
3141
|
+
|
|
3142
|
+
"""
|
|
3143
|
+
A list of edges which contains the `StoreDubheAssetId` and cursor to aid in pagination.
|
|
3144
|
+
"""
|
|
3145
|
+
edges: [StoreDubheAssetIdsEdge!]!
|
|
3146
|
+
|
|
3147
|
+
"""Information to aid in pagination."""
|
|
3148
|
+
pageInfo: PageInfo!
|
|
3149
|
+
|
|
3150
|
+
"""
|
|
3151
|
+
The count of *all* `StoreDubheAssetId` you could get from the connection.
|
|
3152
|
+
"""
|
|
3153
|
+
totalCount: Int!
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
type StoreDubheAssetId implements Node {
|
|
3157
|
+
"""
|
|
3158
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
3159
|
+
"""
|
|
3160
|
+
nodeId: ID!
|
|
3161
|
+
uniqueResourceId: Int!
|
|
3162
|
+
value: String
|
|
3163
|
+
createdAtTimestampMs: BigInt
|
|
3164
|
+
updatedAtTimestampMs: BigInt
|
|
3165
|
+
lastUpdateDigest: String
|
|
3166
|
+
isDeleted: Boolean
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
"""A `StoreDubheAssetId` edge in the connection."""
|
|
3170
|
+
type StoreDubheAssetIdsEdge {
|
|
3171
|
+
"""A cursor for use in pagination."""
|
|
3172
|
+
cursor: Cursor
|
|
3173
|
+
|
|
3174
|
+
"""The `StoreDubheAssetId` at the end of the edge."""
|
|
3175
|
+
node: StoreDubheAssetId!
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
"""Methods to use when ordering `StoreDubheAssetId`."""
|
|
3179
|
+
enum StoreDubheAssetIdsOrderBy {
|
|
3180
|
+
NATURAL
|
|
3181
|
+
UNIQUE_RESOURCE_ID_ASC
|
|
3182
|
+
UNIQUE_RESOURCE_ID_DESC
|
|
3183
|
+
VALUE_ASC
|
|
3184
|
+
VALUE_DESC
|
|
3185
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
3186
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
3187
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
3188
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
3189
|
+
LAST_UPDATE_DIGEST_ASC
|
|
3190
|
+
LAST_UPDATE_DIGEST_DESC
|
|
3191
|
+
IS_DELETED_ASC
|
|
3192
|
+
IS_DELETED_DESC
|
|
3193
|
+
PRIMARY_KEY_ASC
|
|
3194
|
+
PRIMARY_KEY_DESC
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3197
|
+
"""
|
|
3198
|
+
A condition to be used against `StoreDubheAssetId` object types. All fields are
|
|
3199
|
+
tested for equality and combined with a logical ‘and.’
|
|
3200
|
+
"""
|
|
3201
|
+
input StoreDubheAssetIdCondition {
|
|
3202
|
+
"""Checks for equality with the object’s `uniqueResourceId` field."""
|
|
3203
|
+
uniqueResourceId: Int
|
|
3204
|
+
|
|
3205
|
+
"""Checks for equality with the object’s `value` field."""
|
|
3206
|
+
value: String
|
|
3207
|
+
|
|
3208
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
3209
|
+
createdAtTimestampMs: BigInt
|
|
3210
|
+
|
|
3211
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
3212
|
+
updatedAtTimestampMs: BigInt
|
|
3213
|
+
|
|
3214
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
3215
|
+
lastUpdateDigest: String
|
|
3216
|
+
|
|
3217
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
3218
|
+
isDeleted: Boolean
|
|
3219
|
+
}
|
|
3220
|
+
|
|
3221
|
+
"""
|
|
3222
|
+
A filter to be used against `StoreDubheAssetId` object types. All fields are combined with a logical ‘and.’
|
|
3223
|
+
"""
|
|
3224
|
+
input StoreDubheAssetIdFilter {
|
|
3225
|
+
"""Filter by the object’s `uniqueResourceId` field."""
|
|
3226
|
+
uniqueResourceId: IntFilter
|
|
3227
|
+
|
|
3228
|
+
"""Filter by the object’s `value` field."""
|
|
3229
|
+
value: StringFilter
|
|
3230
|
+
|
|
3231
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
3232
|
+
createdAtTimestampMs: BigIntFilter
|
|
3233
|
+
|
|
3234
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
3235
|
+
updatedAtTimestampMs: BigIntFilter
|
|
3236
|
+
|
|
3237
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
3238
|
+
lastUpdateDigest: StringFilter
|
|
3239
|
+
|
|
3240
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
3241
|
+
isDeleted: BooleanFilter
|
|
3242
|
+
|
|
3243
|
+
"""Checks for all expressions in this list."""
|
|
3244
|
+
and: [StoreDubheAssetIdFilter!]
|
|
3245
|
+
|
|
3246
|
+
"""Checks for any expressions in this list."""
|
|
3247
|
+
or: [StoreDubheAssetIdFilter!]
|
|
3248
|
+
|
|
3249
|
+
"""Negates the expression."""
|
|
3250
|
+
not: StoreDubheAssetIdFilter
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
"""A connection to a list of `StoreDubheConfig` values."""
|
|
3254
|
+
type StoreDubheConfigsConnection {
|
|
3255
|
+
"""A list of `StoreDubheConfig` objects."""
|
|
3256
|
+
nodes: [StoreDubheConfig!]!
|
|
3257
|
+
|
|
3258
|
+
"""
|
|
3259
|
+
A list of edges which contains the `StoreDubheConfig` and cursor to aid in pagination.
|
|
3260
|
+
"""
|
|
3261
|
+
edges: [StoreDubheConfigsEdge!]!
|
|
3262
|
+
|
|
3263
|
+
"""Information to aid in pagination."""
|
|
3264
|
+
pageInfo: PageInfo!
|
|
3265
|
+
|
|
3266
|
+
"""
|
|
3267
|
+
The count of *all* `StoreDubheConfig` you could get from the connection.
|
|
3268
|
+
"""
|
|
3269
|
+
totalCount: Int!
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
|
+
type StoreDubheConfig implements Node {
|
|
3273
|
+
"""
|
|
3274
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
3275
|
+
"""
|
|
3276
|
+
nodeId: ID!
|
|
3277
|
+
uniqueResourceId: Int!
|
|
3278
|
+
nextAssetId: String
|
|
3279
|
+
swapFee: String
|
|
3280
|
+
feeTo: String
|
|
3281
|
+
maxSwapPathLen: BigInt
|
|
3282
|
+
admin: String
|
|
3283
|
+
createdAtTimestampMs: BigInt
|
|
3284
|
+
updatedAtTimestampMs: BigInt
|
|
3285
|
+
lastUpdateDigest: String
|
|
3286
|
+
isDeleted: Boolean
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
"""A `StoreDubheConfig` edge in the connection."""
|
|
3290
|
+
type StoreDubheConfigsEdge {
|
|
3291
|
+
"""A cursor for use in pagination."""
|
|
3292
|
+
cursor: Cursor
|
|
3293
|
+
|
|
3294
|
+
"""The `StoreDubheConfig` at the end of the edge."""
|
|
3295
|
+
node: StoreDubheConfig!
|
|
3296
|
+
}
|
|
3297
|
+
|
|
3298
|
+
"""Methods to use when ordering `StoreDubheConfig`."""
|
|
3299
|
+
enum StoreDubheConfigsOrderBy {
|
|
3300
|
+
NATURAL
|
|
3301
|
+
UNIQUE_RESOURCE_ID_ASC
|
|
3302
|
+
UNIQUE_RESOURCE_ID_DESC
|
|
3303
|
+
NEXT_ASSET_ID_ASC
|
|
3304
|
+
NEXT_ASSET_ID_DESC
|
|
3305
|
+
SWAP_FEE_ASC
|
|
3306
|
+
SWAP_FEE_DESC
|
|
3307
|
+
FEE_TO_ASC
|
|
3308
|
+
FEE_TO_DESC
|
|
3309
|
+
MAX_SWAP_PATH_LEN_ASC
|
|
3310
|
+
MAX_SWAP_PATH_LEN_DESC
|
|
3311
|
+
ADMIN_ASC
|
|
3312
|
+
ADMIN_DESC
|
|
3313
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
3314
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
3315
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
3316
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
3317
|
+
LAST_UPDATE_DIGEST_ASC
|
|
3318
|
+
LAST_UPDATE_DIGEST_DESC
|
|
3319
|
+
IS_DELETED_ASC
|
|
3320
|
+
IS_DELETED_DESC
|
|
3321
|
+
PRIMARY_KEY_ASC
|
|
3322
|
+
PRIMARY_KEY_DESC
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
"""
|
|
3326
|
+
A condition to be used against `StoreDubheConfig` object types. All fields are
|
|
3327
|
+
tested for equality and combined with a logical ‘and.’
|
|
3328
|
+
"""
|
|
3329
|
+
input StoreDubheConfigCondition {
|
|
3330
|
+
"""Checks for equality with the object’s `uniqueResourceId` field."""
|
|
3331
|
+
uniqueResourceId: Int
|
|
3332
|
+
|
|
3333
|
+
"""Checks for equality with the object’s `nextAssetId` field."""
|
|
3334
|
+
nextAssetId: String
|
|
3335
|
+
|
|
3336
|
+
"""Checks for equality with the object’s `swapFee` field."""
|
|
3337
|
+
swapFee: String
|
|
3338
|
+
|
|
3339
|
+
"""Checks for equality with the object’s `feeTo` field."""
|
|
3340
|
+
feeTo: String
|
|
3341
|
+
|
|
3342
|
+
"""Checks for equality with the object’s `maxSwapPathLen` field."""
|
|
3343
|
+
maxSwapPathLen: BigInt
|
|
3344
|
+
|
|
3345
|
+
"""Checks for equality with the object’s `admin` field."""
|
|
3346
|
+
admin: String
|
|
3347
|
+
|
|
3348
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
3349
|
+
createdAtTimestampMs: BigInt
|
|
3350
|
+
|
|
3351
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
3352
|
+
updatedAtTimestampMs: BigInt
|
|
3353
|
+
|
|
3354
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
3355
|
+
lastUpdateDigest: String
|
|
3356
|
+
|
|
3357
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
3358
|
+
isDeleted: Boolean
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
"""
|
|
3362
|
+
A filter to be used against `StoreDubheConfig` object types. All fields are combined with a logical ‘and.’
|
|
3363
|
+
"""
|
|
3364
|
+
input StoreDubheConfigFilter {
|
|
3365
|
+
"""Filter by the object’s `uniqueResourceId` field."""
|
|
3366
|
+
uniqueResourceId: IntFilter
|
|
3367
|
+
|
|
3368
|
+
"""Filter by the object’s `nextAssetId` field."""
|
|
3369
|
+
nextAssetId: StringFilter
|
|
3370
|
+
|
|
3371
|
+
"""Filter by the object’s `swapFee` field."""
|
|
3372
|
+
swapFee: StringFilter
|
|
3373
|
+
|
|
3374
|
+
"""Filter by the object’s `feeTo` field."""
|
|
3375
|
+
feeTo: StringFilter
|
|
3376
|
+
|
|
3377
|
+
"""Filter by the object’s `maxSwapPathLen` field."""
|
|
3378
|
+
maxSwapPathLen: BigIntFilter
|
|
3379
|
+
|
|
3380
|
+
"""Filter by the object’s `admin` field."""
|
|
3381
|
+
admin: StringFilter
|
|
3382
|
+
|
|
3383
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
3384
|
+
createdAtTimestampMs: BigIntFilter
|
|
3385
|
+
|
|
3386
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
3387
|
+
updatedAtTimestampMs: BigIntFilter
|
|
3388
|
+
|
|
3389
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
3390
|
+
lastUpdateDigest: StringFilter
|
|
3391
|
+
|
|
3392
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
3393
|
+
isDeleted: BooleanFilter
|
|
3394
|
+
|
|
3395
|
+
"""Checks for all expressions in this list."""
|
|
3396
|
+
and: [StoreDubheConfigFilter!]
|
|
3397
|
+
|
|
3398
|
+
"""Checks for any expressions in this list."""
|
|
3399
|
+
or: [StoreDubheConfigFilter!]
|
|
3400
|
+
|
|
3401
|
+
"""Negates the expression."""
|
|
3402
|
+
not: StoreDubheConfigFilter
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
"""A connection to a list of `StoreSuiAssetId` values."""
|
|
3406
|
+
type StoreSuiAssetIdsConnection {
|
|
3407
|
+
"""A list of `StoreSuiAssetId` objects."""
|
|
3408
|
+
nodes: [StoreSuiAssetId!]!
|
|
3409
|
+
|
|
3410
|
+
"""
|
|
3411
|
+
A list of edges which contains the `StoreSuiAssetId` and cursor to aid in pagination.
|
|
3412
|
+
"""
|
|
3413
|
+
edges: [StoreSuiAssetIdsEdge!]!
|
|
3414
|
+
|
|
3415
|
+
"""Information to aid in pagination."""
|
|
3416
|
+
pageInfo: PageInfo!
|
|
3417
|
+
|
|
3418
|
+
"""
|
|
3419
|
+
The count of *all* `StoreSuiAssetId` you could get from the connection.
|
|
3420
|
+
"""
|
|
3421
|
+
totalCount: Int!
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
type StoreSuiAssetId implements Node {
|
|
3425
|
+
"""
|
|
3426
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
3427
|
+
"""
|
|
3428
|
+
nodeId: ID!
|
|
3429
|
+
uniqueResourceId: Int!
|
|
3430
|
+
value: String
|
|
3431
|
+
createdAtTimestampMs: BigInt
|
|
3432
|
+
updatedAtTimestampMs: BigInt
|
|
3433
|
+
lastUpdateDigest: String
|
|
3434
|
+
isDeleted: Boolean
|
|
3435
|
+
}
|
|
3436
|
+
|
|
3437
|
+
"""A `StoreSuiAssetId` edge in the connection."""
|
|
3438
|
+
type StoreSuiAssetIdsEdge {
|
|
3439
|
+
"""A cursor for use in pagination."""
|
|
3440
|
+
cursor: Cursor
|
|
3441
|
+
|
|
3442
|
+
"""The `StoreSuiAssetId` at the end of the edge."""
|
|
3443
|
+
node: StoreSuiAssetId!
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
"""Methods to use when ordering `StoreSuiAssetId`."""
|
|
3447
|
+
enum StoreSuiAssetIdsOrderBy {
|
|
3448
|
+
NATURAL
|
|
3449
|
+
UNIQUE_RESOURCE_ID_ASC
|
|
3450
|
+
UNIQUE_RESOURCE_ID_DESC
|
|
3451
|
+
VALUE_ASC
|
|
3452
|
+
VALUE_DESC
|
|
3453
|
+
CREATED_AT_TIMESTAMP_MS_ASC
|
|
3454
|
+
CREATED_AT_TIMESTAMP_MS_DESC
|
|
3455
|
+
UPDATED_AT_TIMESTAMP_MS_ASC
|
|
3456
|
+
UPDATED_AT_TIMESTAMP_MS_DESC
|
|
3457
|
+
LAST_UPDATE_DIGEST_ASC
|
|
3458
|
+
LAST_UPDATE_DIGEST_DESC
|
|
3459
|
+
IS_DELETED_ASC
|
|
3460
|
+
IS_DELETED_DESC
|
|
3461
|
+
PRIMARY_KEY_ASC
|
|
3462
|
+
PRIMARY_KEY_DESC
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
"""
|
|
3466
|
+
A condition to be used against `StoreSuiAssetId` object types. All fields are
|
|
3467
|
+
tested for equality and combined with a logical ‘and.’
|
|
3468
|
+
"""
|
|
3469
|
+
input StoreSuiAssetIdCondition {
|
|
3470
|
+
"""Checks for equality with the object’s `uniqueResourceId` field."""
|
|
3471
|
+
uniqueResourceId: Int
|
|
3472
|
+
|
|
3473
|
+
"""Checks for equality with the object’s `value` field."""
|
|
3474
|
+
value: String
|
|
3475
|
+
|
|
3476
|
+
"""Checks for equality with the object’s `createdAtTimestampMs` field."""
|
|
3477
|
+
createdAtTimestampMs: BigInt
|
|
3478
|
+
|
|
3479
|
+
"""Checks for equality with the object’s `updatedAtTimestampMs` field."""
|
|
3480
|
+
updatedAtTimestampMs: BigInt
|
|
3481
|
+
|
|
3482
|
+
"""Checks for equality with the object’s `lastUpdateDigest` field."""
|
|
3483
|
+
lastUpdateDigest: String
|
|
3484
|
+
|
|
3485
|
+
"""Checks for equality with the object’s `isDeleted` field."""
|
|
3486
|
+
isDeleted: Boolean
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
"""
|
|
3490
|
+
A filter to be used against `StoreSuiAssetId` object types. All fields are combined with a logical ‘and.’
|
|
3491
|
+
"""
|
|
3492
|
+
input StoreSuiAssetIdFilter {
|
|
3493
|
+
"""Filter by the object’s `uniqueResourceId` field."""
|
|
3494
|
+
uniqueResourceId: IntFilter
|
|
3495
|
+
|
|
3496
|
+
"""Filter by the object’s `value` field."""
|
|
3497
|
+
value: StringFilter
|
|
3498
|
+
|
|
3499
|
+
"""Filter by the object’s `createdAtTimestampMs` field."""
|
|
3500
|
+
createdAtTimestampMs: BigIntFilter
|
|
3501
|
+
|
|
3502
|
+
"""Filter by the object’s `updatedAtTimestampMs` field."""
|
|
3503
|
+
updatedAtTimestampMs: BigIntFilter
|
|
3504
|
+
|
|
3505
|
+
"""Filter by the object’s `lastUpdateDigest` field."""
|
|
3506
|
+
lastUpdateDigest: StringFilter
|
|
3507
|
+
|
|
3508
|
+
"""Filter by the object’s `isDeleted` field."""
|
|
3509
|
+
isDeleted: BooleanFilter
|
|
3510
|
+
|
|
3511
|
+
"""Checks for all expressions in this list."""
|
|
3512
|
+
and: [StoreSuiAssetIdFilter!]
|
|
3513
|
+
|
|
3514
|
+
"""Checks for any expressions in this list."""
|
|
3515
|
+
or: [StoreSuiAssetIdFilter!]
|
|
3516
|
+
|
|
3517
|
+
"""Negates the expression."""
|
|
3518
|
+
not: StoreSuiAssetIdFilter
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
"""A connection to a list of `TableField` values."""
|
|
3522
|
+
type TableFieldsConnection {
|
|
3523
|
+
"""A list of `TableField` objects."""
|
|
3524
|
+
nodes: [TableField!]!
|
|
3525
|
+
|
|
3526
|
+
"""
|
|
3527
|
+
A list of edges which contains the `TableField` and cursor to aid in pagination.
|
|
3528
|
+
"""
|
|
3529
|
+
edges: [TableFieldsEdge!]!
|
|
3530
|
+
|
|
3531
|
+
"""Information to aid in pagination."""
|
|
3532
|
+
pageInfo: PageInfo!
|
|
3533
|
+
|
|
3534
|
+
"""The count of *all* `TableField` you could get from the connection."""
|
|
3535
|
+
totalCount: Int!
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
type TableField implements Node {
|
|
3539
|
+
"""
|
|
3540
|
+
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
|
|
3541
|
+
"""
|
|
3542
|
+
nodeId: ID!
|
|
3543
|
+
tableName: String!
|
|
3544
|
+
fieldName: String!
|
|
3545
|
+
fieldType: String
|
|
3546
|
+
fieldIndex: Int
|
|
3547
|
+
isKey: Boolean
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
"""A `TableField` edge in the connection."""
|
|
3551
|
+
type TableFieldsEdge {
|
|
3552
|
+
"""A cursor for use in pagination."""
|
|
3553
|
+
cursor: Cursor
|
|
3554
|
+
|
|
3555
|
+
"""The `TableField` at the end of the edge."""
|
|
3556
|
+
node: TableField!
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
"""Methods to use when ordering `TableField`."""
|
|
3560
|
+
enum TableFieldsOrderBy {
|
|
3561
|
+
NATURAL
|
|
3562
|
+
TABLE_NAME_ASC
|
|
3563
|
+
TABLE_NAME_DESC
|
|
3564
|
+
FIELD_NAME_ASC
|
|
3565
|
+
FIELD_NAME_DESC
|
|
3566
|
+
FIELD_TYPE_ASC
|
|
3567
|
+
FIELD_TYPE_DESC
|
|
3568
|
+
FIELD_INDEX_ASC
|
|
3569
|
+
FIELD_INDEX_DESC
|
|
3570
|
+
IS_KEY_ASC
|
|
3571
|
+
IS_KEY_DESC
|
|
3572
|
+
PRIMARY_KEY_ASC
|
|
3573
|
+
PRIMARY_KEY_DESC
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
"""
|
|
3577
|
+
A condition to be used against `TableField` object types. All fields are tested
|
|
3578
|
+
for equality and combined with a logical ‘and.’
|
|
3579
|
+
"""
|
|
3580
|
+
input TableFieldCondition {
|
|
3581
|
+
"""Checks for equality with the object’s `tableName` field."""
|
|
3582
|
+
tableName: String
|
|
3583
|
+
|
|
3584
|
+
"""Checks for equality with the object’s `fieldName` field."""
|
|
3585
|
+
fieldName: String
|
|
3586
|
+
|
|
3587
|
+
"""Checks for equality with the object’s `fieldType` field."""
|
|
3588
|
+
fieldType: String
|
|
3589
|
+
|
|
3590
|
+
"""Checks for equality with the object’s `fieldIndex` field."""
|
|
3591
|
+
fieldIndex: Int
|
|
3592
|
+
|
|
3593
|
+
"""Checks for equality with the object’s `isKey` field."""
|
|
3594
|
+
isKey: Boolean
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
"""
|
|
3598
|
+
A filter to be used against `TableField` object types. All fields are combined with a logical ‘and.’
|
|
3599
|
+
"""
|
|
3600
|
+
input TableFieldFilter {
|
|
3601
|
+
"""Filter by the object’s `tableName` field."""
|
|
3602
|
+
tableName: StringFilter
|
|
3603
|
+
|
|
3604
|
+
"""Filter by the object’s `fieldName` field."""
|
|
3605
|
+
fieldName: StringFilter
|
|
3606
|
+
|
|
3607
|
+
"""Filter by the object’s `fieldType` field."""
|
|
3608
|
+
fieldType: StringFilter
|
|
3609
|
+
|
|
3610
|
+
"""Filter by the object’s `fieldIndex` field."""
|
|
3611
|
+
fieldIndex: IntFilter
|
|
3612
|
+
|
|
3613
|
+
"""Filter by the object’s `isKey` field."""
|
|
3614
|
+
isKey: BooleanFilter
|
|
3615
|
+
|
|
3616
|
+
"""Checks for all expressions in this list."""
|
|
3617
|
+
and: [TableFieldFilter!]
|
|
3618
|
+
|
|
3619
|
+
"""Checks for any expressions in this list."""
|
|
3620
|
+
or: [TableFieldFilter!]
|
|
3621
|
+
|
|
3622
|
+
"""Negates the expression."""
|
|
3623
|
+
not: TableFieldFilter
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
"""
|
|
3627
|
+
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
|
|
3628
|
+
"""
|
|
3629
|
+
scalar JSON
|
|
3630
|
+
|
|
3631
|
+
"""
|
|
3632
|
+
The root mutation type which contains root level fields which mutate data.
|
|
3633
|
+
"""
|
|
3634
|
+
type Mutation {
|
|
3635
|
+
dieselManageUpdatedAt(
|
|
3636
|
+
"""
|
|
3637
|
+
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
|
|
3638
|
+
"""
|
|
3639
|
+
input: DieselManageUpdatedAtInput!
|
|
3640
|
+
): DieselManageUpdatedAtPayload
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
"""The output of our `dieselManageUpdatedAt` mutation."""
|
|
3644
|
+
type DieselManageUpdatedAtPayload {
|
|
3645
|
+
"""
|
|
3646
|
+
The exact same `clientMutationId` that was provided in the mutation input,
|
|
3647
|
+
unchanged and unused. May be used by a client to track mutations.
|
|
3648
|
+
"""
|
|
3649
|
+
clientMutationId: String
|
|
3650
|
+
|
|
3651
|
+
"""
|
|
3652
|
+
Our root query field type. Allows us to run any query from our mutation payload.
|
|
3653
|
+
"""
|
|
3654
|
+
query: Query
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
"""All input for the `dieselManageUpdatedAt` mutation."""
|
|
3658
|
+
input DieselManageUpdatedAtInput {
|
|
3659
|
+
"""
|
|
3660
|
+
An arbitrary string value with no semantic meaning. Will be included in the
|
|
3661
|
+
payload verbatim. May be used to track mutations by the client.
|
|
3662
|
+
"""
|
|
3663
|
+
clientMutationId: String
|
|
3664
|
+
_tbl: RegClass
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
"""A builtin object identifier type for a relation name"""
|
|
3668
|
+
scalar RegClass
|
|
3669
|
+
|
|
3670
|
+
"""
|
|
3671
|
+
The root subscription type: contains realtime events you can subscribe to with the `subscription` operation.
|
|
3672
|
+
"""
|
|
3673
|
+
type Subscription {
|
|
3674
|
+
listen(
|
|
3675
|
+
topic: String!
|
|
3676
|
+
|
|
3677
|
+
"""
|
|
3678
|
+
If true, this subscription will trigger an event as soon as it initiates.
|
|
3679
|
+
"""
|
|
3680
|
+
initialEvent: Boolean! = false
|
|
3681
|
+
): ListenPayload!
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
type ListenPayload {
|
|
3685
|
+
"""
|
|
3686
|
+
Our root query field type. Allows us to run any query from our subscription payload.
|
|
3687
|
+
"""
|
|
3688
|
+
query: Query
|
|
3689
|
+
relatedNode: Node
|
|
3690
|
+
relatedNodeId: ID
|
|
3691
|
+
}
|