Skip to content

Commit 9adbb56

Browse files
committed
chore(release): 0.9.27
1 parent 30d5cd5 commit 9adbb56

File tree

5 files changed

+7819
-7106
lines changed

5 files changed

+7819
-7106
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.9.27](https://github.com/InverterNetwork/indexer/compare/v0.9.26...v0.9.27) (2025-03-12)
6+
57
### [0.9.26](https://github.com/InverterNetwork/indexer/compare/v0.9.25...v0.9.26) (2025-03-11)
68

79
### [0.9.25](https://github.com/InverterNetwork/indexer/compare/v0.9.24...v0.9.25) (2025-03-11)

graphql/src/gen/schema.graphql

Lines changed: 285 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,24 @@ type BlacklistIssuanceToken {
137137
chainId: Int!
138138
db_write_timestamp: timestamp
139139
id: String!
140-
manager: [String!]!
140+
141+
"""An array relationship"""
142+
manager(
143+
"""distinct select on columns"""
144+
distinct_on: [BlacklistManager_select_column!]
145+
146+
"""limit the number of rows returned"""
147+
limit: Int
148+
149+
"""skip the first n rows. Use only with order_by"""
150+
offset: Int
151+
152+
"""sort the rows by one or more columns"""
153+
order_by: [BlacklistManager_order_by!]
154+
155+
"""filter the rows returned"""
156+
where: BlacklistManager_bool_exp
157+
): [BlacklistManager!]!
141158
minter: [String!]!
142159

143160
"""An object relationship"""
@@ -161,7 +178,7 @@ input BlacklistIssuanceToken_bool_exp {
161178
chainId: Int_comparison_exp
162179
db_write_timestamp: timestamp_comparison_exp
163180
id: String_comparison_exp
164-
manager: String_array_comparison_exp
181+
manager: BlacklistManager_bool_exp
165182
minter: String_array_comparison_exp
166183
oraclePriceFM: OraclePriceFM_bool_exp
167184
oraclePriceFM_id: String_comparison_exp
@@ -176,7 +193,7 @@ input BlacklistIssuanceToken_order_by {
176193
chainId: order_by
177194
db_write_timestamp: order_by
178195
id: order_by
179-
manager: order_by
196+
manager_aggregate: BlacklistManager_aggregate_order_by
180197
minter: order_by
181198
oraclePriceFM: OraclePriceFM_order_by
182199
oraclePriceFM_id: order_by
@@ -200,9 +217,6 @@ enum BlacklistIssuanceToken_select_column {
200217
"""column name"""
201218
id
202219

203-
"""column name"""
204-
manager
205-
206220
"""column name"""
207221
minter
208222

@@ -230,12 +244,212 @@ input BlacklistIssuanceToken_stream_cursor_value_input {
230244
chainId: Int
231245
db_write_timestamp: timestamp
232246
id: String
233-
manager: [String!]
234247
minter: [String!]
235248
oraclePriceFM_id: String
236249
token_id: String
237250
}
238251

252+
"""
253+
columns and relationships of "BlacklistManager"
254+
"""
255+
type BlacklistManager {
256+
db_write_timestamp: timestamp
257+
id: String!
258+
initiator: String!
259+
recipient: String!
260+
status: rolestatus!
261+
timestamp: Int!
262+
263+
"""An object relationship"""
264+
token: BlacklistIssuanceToken
265+
token_id: String!
266+
txHash: String!
267+
}
268+
269+
"""
270+
order by aggregate values of table "BlacklistManager"
271+
"""
272+
input BlacklistManager_aggregate_order_by {
273+
avg: BlacklistManager_avg_order_by
274+
count: order_by
275+
max: BlacklistManager_max_order_by
276+
min: BlacklistManager_min_order_by
277+
stddev: BlacklistManager_stddev_order_by
278+
stddev_pop: BlacklistManager_stddev_pop_order_by
279+
stddev_samp: BlacklistManager_stddev_samp_order_by
280+
sum: BlacklistManager_sum_order_by
281+
var_pop: BlacklistManager_var_pop_order_by
282+
var_samp: BlacklistManager_var_samp_order_by
283+
variance: BlacklistManager_variance_order_by
284+
}
285+
286+
"""
287+
order by avg() on columns of table "BlacklistManager"
288+
"""
289+
input BlacklistManager_avg_order_by {
290+
timestamp: order_by
291+
}
292+
293+
"""
294+
Boolean expression to filter rows from the table "BlacklistManager". All fields are combined with a logical 'AND'.
295+
"""
296+
input BlacklistManager_bool_exp {
297+
_and: [BlacklistManager_bool_exp!]
298+
_not: BlacklistManager_bool_exp
299+
_or: [BlacklistManager_bool_exp!]
300+
db_write_timestamp: timestamp_comparison_exp
301+
id: String_comparison_exp
302+
initiator: String_comparison_exp
303+
recipient: String_comparison_exp
304+
status: rolestatus_comparison_exp
305+
timestamp: Int_comparison_exp
306+
token: BlacklistIssuanceToken_bool_exp
307+
token_id: String_comparison_exp
308+
txHash: String_comparison_exp
309+
}
310+
311+
"""
312+
order by max() on columns of table "BlacklistManager"
313+
"""
314+
input BlacklistManager_max_order_by {
315+
db_write_timestamp: order_by
316+
id: order_by
317+
initiator: order_by
318+
recipient: order_by
319+
status: order_by
320+
timestamp: order_by
321+
token_id: order_by
322+
txHash: order_by
323+
}
324+
325+
"""
326+
order by min() on columns of table "BlacklistManager"
327+
"""
328+
input BlacklistManager_min_order_by {
329+
db_write_timestamp: order_by
330+
id: order_by
331+
initiator: order_by
332+
recipient: order_by
333+
status: order_by
334+
timestamp: order_by
335+
token_id: order_by
336+
txHash: order_by
337+
}
338+
339+
"""Ordering options when selecting data from "BlacklistManager"."""
340+
input BlacklistManager_order_by {
341+
db_write_timestamp: order_by
342+
id: order_by
343+
initiator: order_by
344+
recipient: order_by
345+
status: order_by
346+
timestamp: order_by
347+
token: BlacklistIssuanceToken_order_by
348+
token_id: order_by
349+
txHash: order_by
350+
}
351+
352+
"""
353+
select columns of table "BlacklistManager"
354+
"""
355+
enum BlacklistManager_select_column {
356+
"""column name"""
357+
db_write_timestamp
358+
359+
"""column name"""
360+
id
361+
362+
"""column name"""
363+
initiator
364+
365+
"""column name"""
366+
recipient
367+
368+
"""column name"""
369+
status
370+
371+
"""column name"""
372+
timestamp
373+
374+
"""column name"""
375+
token_id
376+
377+
"""column name"""
378+
txHash
379+
}
380+
381+
"""
382+
order by stddev() on columns of table "BlacklistManager"
383+
"""
384+
input BlacklistManager_stddev_order_by {
385+
timestamp: order_by
386+
}
387+
388+
"""
389+
order by stddev_pop() on columns of table "BlacklistManager"
390+
"""
391+
input BlacklistManager_stddev_pop_order_by {
392+
timestamp: order_by
393+
}
394+
395+
"""
396+
order by stddev_samp() on columns of table "BlacklistManager"
397+
"""
398+
input BlacklistManager_stddev_samp_order_by {
399+
timestamp: order_by
400+
}
401+
402+
"""
403+
Streaming cursor of the table "BlacklistManager"
404+
"""
405+
input BlacklistManager_stream_cursor_input {
406+
"""Stream column input with initial value"""
407+
initial_value: BlacklistManager_stream_cursor_value_input!
408+
409+
"""cursor ordering"""
410+
ordering: cursor_ordering
411+
}
412+
413+
"""Initial value of the column from where the streaming should start"""
414+
input BlacklistManager_stream_cursor_value_input {
415+
db_write_timestamp: timestamp
416+
id: String
417+
initiator: String
418+
recipient: String
419+
status: rolestatus
420+
timestamp: Int
421+
token_id: String
422+
txHash: String
423+
}
424+
425+
"""
426+
order by sum() on columns of table "BlacklistManager"
427+
"""
428+
input BlacklistManager_sum_order_by {
429+
timestamp: order_by
430+
}
431+
432+
"""
433+
order by var_pop() on columns of table "BlacklistManager"
434+
"""
435+
input BlacklistManager_var_pop_order_by {
436+
timestamp: order_by
437+
}
438+
439+
"""
440+
order by var_samp() on columns of table "BlacklistManager"
441+
"""
442+
input BlacklistManager_var_samp_order_by {
443+
timestamp: order_by
444+
}
445+
446+
"""
447+
order by variance() on columns of table "BlacklistManager"
448+
"""
449+
input BlacklistManager_variance_order_by {
450+
timestamp: order_by
451+
}
452+
239453
"""
240454
columns and relationships of "BlacklistRole"
241455
"""
@@ -10616,6 +10830,31 @@ type query_root {
1061610830
"""
1061710831
BlacklistIssuanceToken_by_pk(id: String!): BlacklistIssuanceToken
1061810832

10833+
"""
10834+
fetch data from the table: "BlacklistManager"
10835+
"""
10836+
BlacklistManager(
10837+
"""distinct select on columns"""
10838+
distinct_on: [BlacklistManager_select_column!]
10839+
10840+
"""limit the number of rows returned"""
10841+
limit: Int
10842+
10843+
"""skip the first n rows. Use only with order_by"""
10844+
offset: Int
10845+
10846+
"""sort the rows by one or more columns"""
10847+
order_by: [BlacklistManager_order_by!]
10848+
10849+
"""filter the rows returned"""
10850+
where: BlacklistManager_bool_exp
10851+
): [BlacklistManager!]!
10852+
10853+
"""
10854+
fetch data from the table: "BlacklistManager" using primary key columns
10855+
"""
10856+
BlacklistManager_by_pk(id: String!): BlacklistManager
10857+
1061910858
"""
1062010859
fetch data from the table: "BlacklistRole"
1062110860
"""
@@ -12019,6 +12258,45 @@ type subscription_root {
1201912258
where: BlacklistIssuanceToken_bool_exp
1202012259
): [BlacklistIssuanceToken!]!
1202112260

12261+
"""
12262+
fetch data from the table: "BlacklistManager"
12263+
"""
12264+
BlacklistManager(
12265+
"""distinct select on columns"""
12266+
distinct_on: [BlacklistManager_select_column!]
12267+
12268+
"""limit the number of rows returned"""
12269+
limit: Int
12270+
12271+
"""skip the first n rows. Use only with order_by"""
12272+
offset: Int
12273+
12274+
"""sort the rows by one or more columns"""
12275+
order_by: [BlacklistManager_order_by!]
12276+
12277+
"""filter the rows returned"""
12278+
where: BlacklistManager_bool_exp
12279+
): [BlacklistManager!]!
12280+
12281+
"""
12282+
fetch data from the table: "BlacklistManager" using primary key columns
12283+
"""
12284+
BlacklistManager_by_pk(id: String!): BlacklistManager
12285+
12286+
"""
12287+
fetch data from the table in a streaming manner: "BlacklistManager"
12288+
"""
12289+
BlacklistManager_stream(
12290+
"""maximum number of rows returned in a single batch"""
12291+
batch_size: Int!
12292+
12293+
"""cursor to stream the results returned by the query"""
12294+
cursor: [BlacklistManager_stream_cursor_input]!
12295+
12296+
"""filter the rows returned"""
12297+
where: BlacklistManager_bool_exp
12298+
): [BlacklistManager!]!
12299+
1202212300
"""
1202312301
fetch data from the table: "BlacklistRole"
1202412302
"""

0 commit comments

Comments
 (0)