From c6d37c207030fe860c5c9705da6f16ffda4cea29 Mon Sep 17 00:00:00 2001 From: poka <poka@p2p.legal> Date: Sun, 10 Mar 2024 22:26:57 +0100 Subject: [PATCH] adapt graphql request to Hasura engine (clients/rust/gcli-v2s!26) * update schema for enums * update to hasura endpoint * more macro * Ignore non_camel_case_types in vscode stage Are we carring about conventions ? * 2 macros to rule them all * example on how to deserialize * adapt graphql request to Hasura engine --- .vscode/settings.json | 3 +- res/indexer-queries.graphql | 30 +- res/indexer-schema.graphql | 11475 +++++++--- res/indexer-schema.json | 40099 +++++++++++++++++++++++----------- src/commands/identity.rs | 8 +- src/data.rs | 6 +- src/indexer.rs | 43 +- src/indexer/queries.rs | 114 +- 8 files changed, 36523 insertions(+), 15255 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 37912cf..5049145 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { "rust-analyzer.server.extraEnv": null, - "windicss.includeLanguages": {} + "rust-analyzer.diagnostics.disabled": ["non_camel_case_types"], + "windicss.includeLanguages": {}, } \ No newline at end of file diff --git a/res/indexer-queries.graphql b/res/indexer-queries.graphql index 304a8ee..b151992 100644 --- a/res/indexer-queries.graphql +++ b/res/indexer-queries.graphql @@ -1,25 +1,31 @@ query IdentityNameByIndex($index: Int!) { - identities(where: { index_eq: $index }) { + identity(where: { index: { _eq: $index } }) { name } } query NamesByIndexes($indexes: [Int!]!) { - identities(where: {index_in: $indexes}) { + identity(where: { index: { _in: $indexes } }) { index name } } query IdentityInfo($index: Int!) { - identities(where: { index_eq: $index }) { + identity(where: { index: { _eq: $index } }) { name - certIssued(orderBy: expireOn_DESC, where: { isActive_eq: true }) { + certIssued( + orderBy: { expireOn: DESC } + where: { isActive: { _eq: true } } + ) { receiver { name } } - certReceived(orderBy: expireOn_DESC, where: { isActive_eq: true }) { + certReceived( + orderBy: { expireOn: DESC } + where: { isActive: { _eq: true } } + ) { issuer { name } @@ -27,12 +33,12 @@ query IdentityInfo($index: Int!) { linkedAccount { id } - smithCertIssued(orderBy: createdOn_DESC) { + smithCertIssued(orderBy: { createdOn: DESC }) { receiver { name } } - smithCertReceived(orderBy: createdOn_DESC) { + smithCertReceived(orderBy: { createdOn: DESC }) { issuer { name } @@ -41,13 +47,13 @@ query IdentityInfo($index: Int!) { } query IdentityNameByPubkey($pubkey: String!) { - identities(where: { account: { id_eq: $pubkey } }) { + identity(where: { account: { id: { _eq: $pubkey } } }) { name } } query WasIdentityNameByPubkey($pubkey: String!) { - accountById(id: $pubkey) { + accountByPk(id: $pubkey) { wasIdentity { identity { name @@ -57,21 +63,21 @@ query WasIdentityNameByPubkey($pubkey: String!) { } query LatestBlock { - blocks(limit: 1, orderBy: height_DESC) { + block(limit: 1, orderBy: { height: DESC }) { height hash } } query BlockByNumber($number: Int!) { - blocks(where: { height_eq: $number }) { + block(where: { height: { _eq: $number } }) { height hash } } query GenesisHash { - blocks(where: { height_eq: 0 }) { + block(where: { height: { _eq: 0 } }) { hash } } diff --git a/res/indexer-schema.graphql b/res/indexer-schema.graphql index 8d32838..0815a6a 100644 --- a/res/indexer-schema.graphql +++ b/res/indexer-schema.graphql @@ -1,2744 +1,9017 @@ -type Query { - blocks( - where: BlockWhereInput - orderBy: [BlockOrderByInput!] +schema { + query: query_root + subscription: subscription_root +} + +""" +whether this query should be cached (Hasura Cloud only) +""" +directive @cached( + """ + measured in seconds + """ + ttl: Int! = 60 + + """ + refresh the cache entry + """ + refresh: Boolean! = false +) on QUERY + +""" +columns and relationships of "account" +""" +type Account { + id: String! + + """ + An object relationship + """ + identity: Identity + + """ + An object relationship + """ + linkedIdentity: Identity + linkedIdentityId: String + + """ + An array relationship + """ + transfersIssued( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): [Transfer!]! + + """ + An aggregate relationship + """ + transfersIssuedAggregate( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): TransferAggregate! + + """ + An array relationship + """ + transfersReceived( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): [Transfer!]! + + """ + An aggregate relationship + """ + transfersReceivedAggregate( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): TransferAggregate! + + """ + An array relationship + """ + wasIdentity( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): [ChangeOwnerKey!]! + + """ + An aggregate relationship + """ + wasIdentityAggregate( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): ChangeOwnerKeyAggregate! +} + +""" +aggregated selection of "account" +""" +type AccountAggregate { + aggregate: AccountAggregateFields + nodes: [Account!]! +} + +input AccountAggregateBoolExp { + count: accountAggregateBoolExpCount +} + +""" +aggregate fields of "account" +""" +type AccountAggregateFields { + count(columns: [AccountSelectColumn!], distinct: Boolean): Int! + max: AccountMaxFields + min: AccountMinFields +} + +""" +order by aggregate values of table "account" +""" +input AccountAggregateOrderBy { + count: OrderBy + max: AccountMaxOrderBy + min: AccountMinOrderBy +} + +""" +Boolean expression to filter rows from the table "account". All fields are combined with a logical 'AND'. +""" +input AccountBoolExp { + _and: [AccountBoolExp!] + _not: AccountBoolExp + _or: [AccountBoolExp!] + id: StringComparisonExp + identity: IdentityBoolExp + linkedIdentity: IdentityBoolExp + linkedIdentityId: StringComparisonExp + transfersIssued: TransferBoolExp + transfersIssuedAggregate: TransferAggregateBoolExp + transfersReceived: TransferBoolExp + transfersReceivedAggregate: TransferAggregateBoolExp + wasIdentity: ChangeOwnerKeyBoolExp + wasIdentityAggregate: ChangeOwnerKeyAggregateBoolExp +} + +""" +aggregate max on columns +""" +type AccountMaxFields { + id: String + linkedIdentityId: String +} + +""" +order by max() on columns of table "account" +""" +input AccountMaxOrderBy { + id: OrderBy + linkedIdentityId: OrderBy +} + +""" +aggregate min on columns +""" +type AccountMinFields { + id: String + linkedIdentityId: String +} + +""" +order by min() on columns of table "account" +""" +input AccountMinOrderBy { + id: OrderBy + linkedIdentityId: OrderBy +} + +""" +Ordering options when selecting data from "account". +""" +input AccountOrderBy { + id: OrderBy + identity: IdentityOrderBy + linkedIdentity: IdentityOrderBy + linkedIdentityId: OrderBy + transfersIssuedAggregate: TransferAggregateOrderBy + transfersReceivedAggregate: TransferAggregateOrderBy + wasIdentityAggregate: ChangeOwnerKeyAggregateOrderBy +} + +""" +select columns of table "account" +""" +enum AccountSelectColumn { + """ + column name + """ + id + + """ + column name + """ + linkedIdentityId +} + +""" +Streaming cursor of the table "account" +""" +input AccountStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: AccountStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input AccountStreamCursorValueInput { + id: String + linkedIdentityId: String +} + +""" +columns and relationships of "block" +""" +type Block { + """ + An array relationship + """ + calls( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): [Call!]! + + """ + An aggregate relationship + """ + callsAggregate( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): CallAggregate! + callsCount: Int! + + """ + An array relationship + """ + events( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): [Event!]! + + """ + An aggregate relationship + """ + eventsAggregate( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): EventAggregate! + eventsCount: Int! + + """ + An array relationship + """ + extrinsics( + """ + distinct select on columns + """ + distinctOn: [ExtrinsicSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ExtrinsicOrderBy!] + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): [Extrinsic!]! + + """ + An aggregate relationship + """ + extrinsicsAggregate( + """ + distinct select on columns + """ + distinctOn: [ExtrinsicSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ExtrinsicOrderBy!] + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): ExtrinsicAggregate! + extrinsicsCount: Int! + extrinsicsicRoot: bytea! + hash: bytea! + height: Int! + id: String! + implName: String! + implVersion: Int! + parentHash: bytea! + specName: String! + specVersion: Int! + stateRoot: bytea! + timestamp: timestamptz! + validator: bytea +} + +""" +aggregated selection of "block" +""" +type BlockAggregate { + aggregate: BlockAggregateFields + nodes: [Block!]! +} + +""" +aggregate fields of "block" +""" +type BlockAggregateFields { + avg: BlockAvgFields + count(columns: [BlockSelectColumn!], distinct: Boolean): Int! + max: BlockMaxFields + min: BlockMinFields + stddev: BlockStddevFields + stddevPop: BlockStddevPopFields + stddevSamp: BlockStddevSampFields + sum: BlockSumFields + varPop: BlockVarPopFields + varSamp: BlockVarSampFields + variance: BlockVarianceFields +} + +""" +aggregate avg on columns +""" +type BlockAvgFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +Boolean expression to filter rows from the table "block". All fields are combined with a logical 'AND'. +""" +input BlockBoolExp { + _and: [BlockBoolExp!] + _not: BlockBoolExp + _or: [BlockBoolExp!] + calls: CallBoolExp + callsAggregate: CallAggregateBoolExp + callsCount: IntComparisonExp + events: EventBoolExp + eventsAggregate: EventAggregateBoolExp + eventsCount: IntComparisonExp + extrinsics: ExtrinsicBoolExp + extrinsicsAggregate: ExtrinsicAggregateBoolExp + extrinsicsCount: IntComparisonExp + extrinsicsicRoot: ByteaComparisonExp + hash: ByteaComparisonExp + height: IntComparisonExp + id: StringComparisonExp + implName: StringComparisonExp + implVersion: IntComparisonExp + parentHash: ByteaComparisonExp + specName: StringComparisonExp + specVersion: IntComparisonExp + stateRoot: ByteaComparisonExp + timestamp: TimestamptzComparisonExp + validator: ByteaComparisonExp +} + +""" +aggregate max on columns +""" +type BlockMaxFields { + callsCount: Int + eventsCount: Int + extrinsicsCount: Int + height: Int + id: String + implName: String + implVersion: Int + specName: String + specVersion: Int + timestamp: timestamptz +} + +""" +aggregate min on columns +""" +type BlockMinFields { + callsCount: Int + eventsCount: Int + extrinsicsCount: Int + height: Int + id: String + implName: String + implVersion: Int + specName: String + specVersion: Int + timestamp: timestamptz +} + +""" +Ordering options when selecting data from "block". +""" +input BlockOrderBy { + callsAggregate: CallAggregateOrderBy + callsCount: OrderBy + eventsAggregate: EventAggregateOrderBy + eventsCount: OrderBy + extrinsicsAggregate: ExtrinsicAggregateOrderBy + extrinsicsCount: OrderBy + extrinsicsicRoot: OrderBy + hash: OrderBy + height: OrderBy + id: OrderBy + implName: OrderBy + implVersion: OrderBy + parentHash: OrderBy + specName: OrderBy + specVersion: OrderBy + stateRoot: OrderBy + timestamp: OrderBy + validator: OrderBy +} + +""" +select columns of table "block" +""" +enum BlockSelectColumn { + """ + column name + """ + callsCount + + """ + column name + """ + eventsCount + + """ + column name + """ + extrinsicsCount + + """ + column name + """ + extrinsicsicRoot + + """ + column name + """ + hash + + """ + column name + """ + height + + """ + column name + """ + id + + """ + column name + """ + implName + + """ + column name + """ + implVersion + + """ + column name + """ + parentHash + + """ + column name + """ + specName + + """ + column name + """ + specVersion + + """ + column name + """ + stateRoot + + """ + column name + """ + timestamp + + """ + column name + """ + validator +} + +""" +aggregate stddev on columns +""" +type BlockStddevFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +aggregate stddevPop on columns +""" +type BlockStddevPopFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +aggregate stddevSamp on columns +""" +type BlockStddevSampFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +Streaming cursor of the table "block" +""" +input BlockStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: BlockStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input BlockStreamCursorValueInput { + callsCount: Int + eventsCount: Int + extrinsicsCount: Int + extrinsicsicRoot: bytea + hash: bytea + height: Int + id: String + implName: String + implVersion: Int + parentHash: bytea + specName: String + specVersion: Int + stateRoot: bytea + timestamp: timestamptz + validator: bytea +} + +""" +aggregate sum on columns +""" +type BlockSumFields { + callsCount: Int + eventsCount: Int + extrinsicsCount: Int + height: Int + implVersion: Int + specVersion: Int +} + +""" +aggregate varPop on columns +""" +type BlockVarPopFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +aggregate varSamp on columns +""" +type BlockVarSampFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +aggregate variance on columns +""" +type BlockVarianceFields { + callsCount: Float + eventsCount: Float + extrinsicsCount: Float + height: Float + implVersion: Float + specVersion: Float +} + +""" +Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. +""" +input BooleanComparisonExp { + _eq: Boolean + _gt: Boolean + _gte: Boolean + _in: [Boolean!] + _isNull: Boolean + _lt: Boolean + _lte: Boolean + _neq: Boolean + _nin: [Boolean!] +} + +""" +Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. +""" +input ByteaComparisonExp { + _eq: bytea + _gt: bytea + _gte: bytea + _in: [bytea!] + _isNull: Boolean + _lt: bytea + _lte: bytea + _neq: bytea + _nin: [bytea!] +} + +""" +columns and relationships of "call" +""" +type Call { + address: [Int!]! + args( + """ + JSON select path + """ + path: String + ): jsonb + argsStr: [String!] + + """ + An object relationship + """ + block: Block + blockId: String + error( + """ + JSON select path + """ + path: String + ): jsonb + + """ + An array relationship + """ + events( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): [Event!]! + + """ + An aggregate relationship + """ + eventsAggregate( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): EventAggregate! + + """ + An object relationship + """ + extrinsic: Extrinsic + extrinsicId: String + id: String! + name: String! + pallet: String! + + """ + An object relationship + """ + parent: Call + parentId: String + + """ + An array relationship + """ + subcalls( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): [Call!]! + + """ + An aggregate relationship + """ + subcallsAggregate( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): CallAggregate! + success: Boolean! +} + +""" +aggregated selection of "call" +""" +type CallAggregate { + aggregate: CallAggregateFields + nodes: [Call!]! +} + +input CallAggregateBoolExp { + bool_and: callAggregateBoolExpBool_and + bool_or: callAggregateBoolExpBool_or + count: callAggregateBoolExpCount +} + +""" +aggregate fields of "call" +""" +type CallAggregateFields { + count(columns: [CallSelectColumn!], distinct: Boolean): Int! + max: CallMaxFields + min: CallMinFields +} + +""" +order by aggregate values of table "call" +""" +input CallAggregateOrderBy { + count: OrderBy + max: CallMaxOrderBy + min: CallMinOrderBy +} + +""" +Boolean expression to filter rows from the table "call". All fields are combined with a logical 'AND'. +""" +input CallBoolExp { + _and: [CallBoolExp!] + _not: CallBoolExp + _or: [CallBoolExp!] + address: IntArrayComparisonExp + args: JsonbComparisonExp + argsStr: StringArrayComparisonExp + block: BlockBoolExp + blockId: StringComparisonExp + error: JsonbComparisonExp + events: EventBoolExp + eventsAggregate: EventAggregateBoolExp + extrinsic: ExtrinsicBoolExp + extrinsicId: StringComparisonExp + id: StringComparisonExp + name: StringComparisonExp + pallet: StringComparisonExp + parent: CallBoolExp + parentId: StringComparisonExp + subcalls: CallBoolExp + subcallsAggregate: CallAggregateBoolExp + success: BooleanComparisonExp +} + +""" +aggregate max on columns +""" +type CallMaxFields { + address: [Int!] + argsStr: [String!] + blockId: String + extrinsicId: String + id: String + name: String + pallet: String + parentId: String +} + +""" +order by max() on columns of table "call" +""" +input CallMaxOrderBy { + address: OrderBy + argsStr: OrderBy + blockId: OrderBy + extrinsicId: OrderBy + id: OrderBy + name: OrderBy + pallet: OrderBy + parentId: OrderBy +} + +""" +aggregate min on columns +""" +type CallMinFields { + address: [Int!] + argsStr: [String!] + blockId: String + extrinsicId: String + id: String + name: String + pallet: String + parentId: String +} + +""" +order by min() on columns of table "call" +""" +input CallMinOrderBy { + address: OrderBy + argsStr: OrderBy + blockId: OrderBy + extrinsicId: OrderBy + id: OrderBy + name: OrderBy + pallet: OrderBy + parentId: OrderBy +} + +""" +Ordering options when selecting data from "call". +""" +input CallOrderBy { + address: OrderBy + args: OrderBy + argsStr: OrderBy + block: BlockOrderBy + blockId: OrderBy + error: OrderBy + eventsAggregate: EventAggregateOrderBy + extrinsic: ExtrinsicOrderBy + extrinsicId: OrderBy + id: OrderBy + name: OrderBy + pallet: OrderBy + parent: CallOrderBy + parentId: OrderBy + subcallsAggregate: CallAggregateOrderBy + success: OrderBy +} + +""" +select columns of table "call" +""" +enum CallSelectColumn { + """ + column name + """ + address + + """ + column name + """ + args + + """ + column name + """ + argsStr + + """ + column name + """ + blockId + + """ + column name + """ + error + + """ + column name + """ + extrinsicId + + """ + column name + """ + id + + """ + column name + """ + name + + """ + column name + """ + pallet + + """ + column name + """ + parentId + + """ + column name + """ + success +} + +""" +select "callAggregateBoolExpBool_andArgumentsColumns" columns of table "call" +""" +enum CallSelectColumnCallAggregateBoolExpBool_andArgumentsColumns { + """ + column name + """ + success +} + +""" +select "callAggregateBoolExpBool_orArgumentsColumns" columns of table "call" +""" +enum CallSelectColumnCallAggregateBoolExpBool_orArgumentsColumns { + """ + column name + """ + success +} + +""" +Streaming cursor of the table "call" +""" +input CallStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: CallStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input CallStreamCursorValueInput { + address: [Int!] + args: jsonb + argsStr: [String!] + blockId: String + error: jsonb + extrinsicId: String + id: String + name: String + pallet: String + parentId: String + success: Boolean +} + +""" +columns and relationships of "cert" +""" +type Cert { + """ + An array relationship + """ + certHistory( + """ + distinct select on columns + """ + distinctOn: [CertEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertEventOrderBy!] + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): [CertEvent!]! + + """ + An aggregate relationship + """ + certHistoryAggregate( + """ + distinct select on columns + """ + distinctOn: [CertEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertEventOrderBy!] + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): CertEventAggregate! + createdOn: Int! + expireOn: Int! + id: String! + isActive: Boolean! + + """ + An object relationship + """ + issuer: Identity + issuerId: String + + """ + An object relationship + """ + receiver: Identity + receiverId: String +} + +""" +aggregated selection of "cert" +""" +type CertAggregate { + aggregate: CertAggregateFields + nodes: [Cert!]! +} + +input CertAggregateBoolExp { + bool_and: certAggregateBoolExpBool_and + bool_or: certAggregateBoolExpBool_or + count: certAggregateBoolExpCount +} + +""" +aggregate fields of "cert" +""" +type CertAggregateFields { + avg: CertAvgFields + count(columns: [CertSelectColumn!], distinct: Boolean): Int! + max: CertMaxFields + min: CertMinFields + stddev: CertStddevFields + stddevPop: CertStddevPopFields + stddevSamp: CertStddevSampFields + sum: CertSumFields + varPop: CertVarPopFields + varSamp: CertVarSampFields + variance: CertVarianceFields +} + +""" +order by aggregate values of table "cert" +""" +input CertAggregateOrderBy { + avg: CertAvgOrderBy + count: OrderBy + max: CertMaxOrderBy + min: CertMinOrderBy + stddev: CertStddevOrderBy + stddevPop: CertStddevPopOrderBy + stddevSamp: CertStddevSampOrderBy + sum: CertSumOrderBy + varPop: CertVarPopOrderBy + varSamp: CertVarSampOrderBy + variance: CertVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type CertAvgFields { + createdOn: Float + expireOn: Float +} + +""" +order by avg() on columns of table "cert" +""" +input CertAvgOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +Boolean expression to filter rows from the table "cert". All fields are combined with a logical 'AND'. +""" +input CertBoolExp { + _and: [CertBoolExp!] + _not: CertBoolExp + _or: [CertBoolExp!] + certHistory: CertEventBoolExp + certHistoryAggregate: CertEventAggregateBoolExp + createdOn: IntComparisonExp + expireOn: IntComparisonExp + id: StringComparisonExp + isActive: BooleanComparisonExp + issuer: IdentityBoolExp + issuerId: StringComparisonExp + receiver: IdentityBoolExp + receiverId: StringComparisonExp +} + +""" +columns and relationships of "cert_event" +""" +type CertEvent { + blockNumber: Int! + + """ + An object relationship + """ + cert: Cert + certId: String + + """ + An object relationship + """ + event: Event + eventId: String + eventType: EventTypeEnum + id: String! +} + +""" +aggregated selection of "cert_event" +""" +type CertEventAggregate { + aggregate: CertEventAggregateFields + nodes: [CertEvent!]! +} + +input CertEventAggregateBoolExp { + count: certEventAggregateBoolExpCount +} + +""" +aggregate fields of "cert_event" +""" +type CertEventAggregateFields { + avg: CertEventAvgFields + count(columns: [CertEventSelectColumn!], distinct: Boolean): Int! + max: CertEventMaxFields + min: CertEventMinFields + stddev: CertEventStddevFields + stddevPop: CertEventStddevPopFields + stddevSamp: CertEventStddevSampFields + sum: CertEventSumFields + varPop: CertEventVarPopFields + varSamp: CertEventVarSampFields + variance: CertEventVarianceFields +} + +""" +order by aggregate values of table "cert_event" +""" +input CertEventAggregateOrderBy { + avg: CertEventAvgOrderBy + count: OrderBy + max: CertEventMaxOrderBy + min: CertEventMinOrderBy + stddev: CertEventStddevOrderBy + stddevPop: CertEventStddevPopOrderBy + stddevSamp: CertEventStddevSampOrderBy + sum: CertEventSumOrderBy + varPop: CertEventVarPopOrderBy + varSamp: CertEventVarSampOrderBy + variance: CertEventVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type CertEventAvgFields { + blockNumber: Float +} + +""" +order by avg() on columns of table "cert_event" +""" +input CertEventAvgOrderBy { + blockNumber: OrderBy +} + +""" +Boolean expression to filter rows from the table "cert_event". All fields are combined with a logical 'AND'. +""" +input CertEventBoolExp { + _and: [CertEventBoolExp!] + _not: CertEventBoolExp + _or: [CertEventBoolExp!] + blockNumber: IntComparisonExp + cert: CertBoolExp + certId: StringComparisonExp + event: EventBoolExp + eventId: StringComparisonExp + eventType: EventTypeEnumComparisonExp + id: StringComparisonExp +} + +""" +aggregate max on columns +""" +type CertEventMaxFields { + blockNumber: Int + certId: String + eventId: String + id: String +} + +""" +order by max() on columns of table "cert_event" +""" +input CertEventMaxOrderBy { + blockNumber: OrderBy + certId: OrderBy + eventId: OrderBy + id: OrderBy +} + +""" +aggregate min on columns +""" +type CertEventMinFields { + blockNumber: Int + certId: String + eventId: String + id: String +} + +""" +order by min() on columns of table "cert_event" +""" +input CertEventMinOrderBy { + blockNumber: OrderBy + certId: OrderBy + eventId: OrderBy + id: OrderBy +} + +""" +Ordering options when selecting data from "cert_event". +""" +input CertEventOrderBy { + blockNumber: OrderBy + cert: CertOrderBy + certId: OrderBy + event: EventOrderBy + eventId: OrderBy + eventType: OrderBy + id: OrderBy +} + +""" +select columns of table "cert_event" +""" +enum CertEventSelectColumn { + """ + column name + """ + blockNumber + + """ + column name + """ + certId + + """ + column name + """ + eventId + + """ + column name + """ + eventType + + """ + column name + """ + id +} + +""" +aggregate stddev on columns +""" +type CertEventStddevFields { + blockNumber: Float +} + +""" +order by stddev() on columns of table "cert_event" +""" +input CertEventStddevOrderBy { + blockNumber: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type CertEventStddevPopFields { + blockNumber: Float +} + +""" +order by stddevPop() on columns of table "cert_event" +""" +input CertEventStddevPopOrderBy { + blockNumber: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type CertEventStddevSampFields { + blockNumber: Float +} + +""" +order by stddevSamp() on columns of table "cert_event" +""" +input CertEventStddevSampOrderBy { + blockNumber: OrderBy +} + +""" +Streaming cursor of the table "cert_event" +""" +input CertEventStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: CertEventStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input CertEventStreamCursorValueInput { + blockNumber: Int + certId: String + eventId: String + eventType: EventTypeEnum + id: String +} + +""" +aggregate sum on columns +""" +type CertEventSumFields { + blockNumber: Int +} + +""" +order by sum() on columns of table "cert_event" +""" +input CertEventSumOrderBy { + blockNumber: OrderBy +} + +""" +aggregate varPop on columns +""" +type CertEventVarPopFields { + blockNumber: Float +} + +""" +order by varPop() on columns of table "cert_event" +""" +input CertEventVarPopOrderBy { + blockNumber: OrderBy +} + +""" +aggregate varSamp on columns +""" +type CertEventVarSampFields { + blockNumber: Float +} + +""" +order by varSamp() on columns of table "cert_event" +""" +input CertEventVarSampOrderBy { + blockNumber: OrderBy +} + +""" +aggregate variance on columns +""" +type CertEventVarianceFields { + blockNumber: Float +} + +""" +order by variance() on columns of table "cert_event" +""" +input CertEventVarianceOrderBy { + blockNumber: OrderBy +} + +""" +aggregate max on columns +""" +type CertMaxFields { + createdOn: Int + expireOn: Int + id: String + issuerId: String + receiverId: String +} + +""" +order by max() on columns of table "cert" +""" +input CertMaxOrderBy { + createdOn: OrderBy + expireOn: OrderBy + id: OrderBy + issuerId: OrderBy + receiverId: OrderBy +} + +""" +aggregate min on columns +""" +type CertMinFields { + createdOn: Int + expireOn: Int + id: String + issuerId: String + receiverId: String +} + +""" +order by min() on columns of table "cert" +""" +input CertMinOrderBy { + createdOn: OrderBy + expireOn: OrderBy + id: OrderBy + issuerId: OrderBy + receiverId: OrderBy +} + +""" +Ordering options when selecting data from "cert". +""" +input CertOrderBy { + certHistoryAggregate: CertEventAggregateOrderBy + createdOn: OrderBy + expireOn: OrderBy + id: OrderBy + isActive: OrderBy + issuer: IdentityOrderBy + issuerId: OrderBy + receiver: IdentityOrderBy + receiverId: OrderBy +} + +""" +select columns of table "cert" +""" +enum CertSelectColumn { + """ + column name + """ + createdOn + + """ + column name + """ + expireOn + + """ + column name + """ + id + + """ + column name + """ + isActive + + """ + column name + """ + issuerId + + """ + column name + """ + receiverId +} + +""" +select "certAggregateBoolExpBool_andArgumentsColumns" columns of table "cert" +""" +enum CertSelectColumnCertAggregateBoolExpBool_andArgumentsColumns { + """ + column name + """ + isActive +} + +""" +select "certAggregateBoolExpBool_orArgumentsColumns" columns of table "cert" +""" +enum CertSelectColumnCertAggregateBoolExpBool_orArgumentsColumns { + """ + column name + """ + isActive +} + +""" +aggregate stddev on columns +""" +type CertStddevFields { + createdOn: Float + expireOn: Float +} + +""" +order by stddev() on columns of table "cert" +""" +input CertStddevOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type CertStddevPopFields { + createdOn: Float + expireOn: Float +} + +""" +order by stddevPop() on columns of table "cert" +""" +input CertStddevPopOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type CertStddevSampFields { + createdOn: Float + expireOn: Float +} + +""" +order by stddevSamp() on columns of table "cert" +""" +input CertStddevSampOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +Streaming cursor of the table "cert" +""" +input CertStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: CertStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input CertStreamCursorValueInput { + createdOn: Int + expireOn: Int + id: String + isActive: Boolean + issuerId: String + receiverId: String +} + +""" +aggregate sum on columns +""" +type CertSumFields { + createdOn: Int + expireOn: Int +} + +""" +order by sum() on columns of table "cert" +""" +input CertSumOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +aggregate varPop on columns +""" +type CertVarPopFields { + createdOn: Float + expireOn: Float +} + +""" +order by varPop() on columns of table "cert" +""" +input CertVarPopOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +aggregate varSamp on columns +""" +type CertVarSampFields { + createdOn: Float + expireOn: Float +} + +""" +order by varSamp() on columns of table "cert" +""" +input CertVarSampOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +aggregate variance on columns +""" +type CertVarianceFields { + createdOn: Float + expireOn: Float +} + +""" +order by variance() on columns of table "cert" +""" +input CertVarianceOrderBy { + createdOn: OrderBy + expireOn: OrderBy +} + +""" +columns and relationships of "change_owner_key" +""" +type ChangeOwnerKey { + blockNumber: Int! + id: String! + + """ + An object relationship + """ + identity: Identity + identityId: String + + """ + An object relationship + """ + next: Account + nextId: String + + """ + An object relationship + """ + previous: Account + previousId: String +} + +""" +aggregated selection of "change_owner_key" +""" +type ChangeOwnerKeyAggregate { + aggregate: ChangeOwnerKeyAggregateFields + nodes: [ChangeOwnerKey!]! +} + +input ChangeOwnerKeyAggregateBoolExp { + count: changeOwnerKeyAggregateBoolExpCount +} + +""" +aggregate fields of "change_owner_key" +""" +type ChangeOwnerKeyAggregateFields { + avg: ChangeOwnerKeyAvgFields + count(columns: [ChangeOwnerKeySelectColumn!], distinct: Boolean): Int! + max: ChangeOwnerKeyMaxFields + min: ChangeOwnerKeyMinFields + stddev: ChangeOwnerKeyStddevFields + stddevPop: ChangeOwnerKeyStddevPopFields + stddevSamp: ChangeOwnerKeyStddevSampFields + sum: ChangeOwnerKeySumFields + varPop: ChangeOwnerKeyVarPopFields + varSamp: ChangeOwnerKeyVarSampFields + variance: ChangeOwnerKeyVarianceFields +} + +""" +order by aggregate values of table "change_owner_key" +""" +input ChangeOwnerKeyAggregateOrderBy { + avg: ChangeOwnerKeyAvgOrderBy + count: OrderBy + max: ChangeOwnerKeyMaxOrderBy + min: ChangeOwnerKeyMinOrderBy + stddev: ChangeOwnerKeyStddevOrderBy + stddevPop: ChangeOwnerKeyStddevPopOrderBy + stddevSamp: ChangeOwnerKeyStddevSampOrderBy + sum: ChangeOwnerKeySumOrderBy + varPop: ChangeOwnerKeyVarPopOrderBy + varSamp: ChangeOwnerKeyVarSampOrderBy + variance: ChangeOwnerKeyVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type ChangeOwnerKeyAvgFields { + blockNumber: Float +} + +""" +order by avg() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyAvgOrderBy { + blockNumber: OrderBy +} + +""" +Boolean expression to filter rows from the table "change_owner_key". All fields are combined with a logical 'AND'. +""" +input ChangeOwnerKeyBoolExp { + _and: [ChangeOwnerKeyBoolExp!] + _not: ChangeOwnerKeyBoolExp + _or: [ChangeOwnerKeyBoolExp!] + blockNumber: IntComparisonExp + id: StringComparisonExp + identity: IdentityBoolExp + identityId: StringComparisonExp + next: AccountBoolExp + nextId: StringComparisonExp + previous: AccountBoolExp + previousId: StringComparisonExp +} + +""" +aggregate max on columns +""" +type ChangeOwnerKeyMaxFields { + blockNumber: Int + id: String + identityId: String + nextId: String + previousId: String +} + +""" +order by max() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyMaxOrderBy { + blockNumber: OrderBy + id: OrderBy + identityId: OrderBy + nextId: OrderBy + previousId: OrderBy +} + +""" +aggregate min on columns +""" +type ChangeOwnerKeyMinFields { + blockNumber: Int + id: String + identityId: String + nextId: String + previousId: String +} + +""" +order by min() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyMinOrderBy { + blockNumber: OrderBy + id: OrderBy + identityId: OrderBy + nextId: OrderBy + previousId: OrderBy +} + +""" +Ordering options when selecting data from "change_owner_key". +""" +input ChangeOwnerKeyOrderBy { + blockNumber: OrderBy + id: OrderBy + identity: IdentityOrderBy + identityId: OrderBy + next: AccountOrderBy + nextId: OrderBy + previous: AccountOrderBy + previousId: OrderBy +} + +""" +select columns of table "change_owner_key" +""" +enum ChangeOwnerKeySelectColumn { + """ + column name + """ + blockNumber + + """ + column name + """ + id + + """ + column name + """ + identityId + + """ + column name + """ + nextId + + """ + column name + """ + previousId +} + +""" +aggregate stddev on columns +""" +type ChangeOwnerKeyStddevFields { + blockNumber: Float +} + +""" +order by stddev() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyStddevOrderBy { + blockNumber: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type ChangeOwnerKeyStddevPopFields { + blockNumber: Float +} + +""" +order by stddevPop() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyStddevPopOrderBy { + blockNumber: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type ChangeOwnerKeyStddevSampFields { + blockNumber: Float +} + +""" +order by stddevSamp() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyStddevSampOrderBy { + blockNumber: OrderBy +} + +""" +Streaming cursor of the table "change_owner_key" +""" +input ChangeOwnerKeyStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: ChangeOwnerKeyStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input ChangeOwnerKeyStreamCursorValueInput { + blockNumber: Int + id: String + identityId: String + nextId: String + previousId: String +} + +""" +aggregate sum on columns +""" +type ChangeOwnerKeySumFields { + blockNumber: Int +} + +""" +order by sum() on columns of table "change_owner_key" +""" +input ChangeOwnerKeySumOrderBy { + blockNumber: OrderBy +} + +""" +aggregate varPop on columns +""" +type ChangeOwnerKeyVarPopFields { + blockNumber: Float +} + +""" +order by varPop() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyVarPopOrderBy { + blockNumber: OrderBy +} + +""" +aggregate varSamp on columns +""" +type ChangeOwnerKeyVarSampFields { + blockNumber: Float +} + +""" +order by varSamp() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyVarSampOrderBy { + blockNumber: OrderBy +} + +""" +aggregate variance on columns +""" +type ChangeOwnerKeyVarianceFields { + blockNumber: Float +} + +""" +order by variance() on columns of table "change_owner_key" +""" +input ChangeOwnerKeyVarianceOrderBy { + blockNumber: OrderBy +} + +enum CounterLevelEnum { + GLOBAL + ITEM + PALLET +} + +""" +Boolean expression to compare columns of type "CounterLevelEnum". All fields are combined with logical 'AND'. +""" +input CounterLevelEnumComparisonExp { + _eq: CounterLevelEnum + _in: [CounterLevelEnum!] + _isNull: Boolean + _neq: CounterLevelEnum + _nin: [CounterLevelEnum!] +} + +""" +ordering argument of a cursor +""" +enum CursorOrdering { + """ + ascending ordering of the cursor + """ + ASC + + """ + descending ordering of the cursor + """ + DESC +} + +""" +columns and relationships of "event" +""" +type Event { + args( + """ + JSON select path + """ + path: String + ): jsonb + argsStr: [String!] + + """ + An object relationship + """ + block: Block + blockId: String + + """ + An object relationship + """ + call: Call + callId: String + + """ + An object relationship + """ + extrinsic: Extrinsic + extrinsicId: String + id: String! + index: Int! + name: String! + pallet: String! + phase: String! +} + +""" +aggregated selection of "event" +""" +type EventAggregate { + aggregate: EventAggregateFields + nodes: [Event!]! +} + +input EventAggregateBoolExp { + count: eventAggregateBoolExpCount +} + +""" +aggregate fields of "event" +""" +type EventAggregateFields { + avg: EventAvgFields + count(columns: [EventSelectColumn!], distinct: Boolean): Int! + max: EventMaxFields + min: EventMinFields + stddev: EventStddevFields + stddevPop: EventStddevPopFields + stddevSamp: EventStddevSampFields + sum: EventSumFields + varPop: EventVarPopFields + varSamp: EventVarSampFields + variance: EventVarianceFields +} + +""" +order by aggregate values of table "event" +""" +input EventAggregateOrderBy { + avg: EventAvgOrderBy + count: OrderBy + max: EventMaxOrderBy + min: EventMinOrderBy + stddev: EventStddevOrderBy + stddevPop: EventStddevPopOrderBy + stddevSamp: EventStddevSampOrderBy + sum: EventSumOrderBy + varPop: EventVarPopOrderBy + varSamp: EventVarSampOrderBy + variance: EventVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type EventAvgFields { + index: Float +} + +""" +order by avg() on columns of table "event" +""" +input EventAvgOrderBy { + index: OrderBy +} + +""" +Boolean expression to filter rows from the table "event". All fields are combined with a logical 'AND'. +""" +input EventBoolExp { + _and: [EventBoolExp!] + _not: EventBoolExp + _or: [EventBoolExp!] + args: JsonbComparisonExp + argsStr: StringArrayComparisonExp + block: BlockBoolExp + blockId: StringComparisonExp + call: CallBoolExp + callId: StringComparisonExp + extrinsic: ExtrinsicBoolExp + extrinsicId: StringComparisonExp + id: StringComparisonExp + index: IntComparisonExp + name: StringComparisonExp + pallet: StringComparisonExp + phase: StringComparisonExp +} + +""" +aggregate max on columns +""" +type EventMaxFields { + argsStr: [String!] + blockId: String + callId: String + extrinsicId: String + id: String + index: Int + name: String + pallet: String + phase: String +} + +""" +order by max() on columns of table "event" +""" +input EventMaxOrderBy { + argsStr: OrderBy + blockId: OrderBy + callId: OrderBy + extrinsicId: OrderBy + id: OrderBy + index: OrderBy + name: OrderBy + pallet: OrderBy + phase: OrderBy +} + +""" +aggregate min on columns +""" +type EventMinFields { + argsStr: [String!] + blockId: String + callId: String + extrinsicId: String + id: String + index: Int + name: String + pallet: String + phase: String +} + +""" +order by min() on columns of table "event" +""" +input EventMinOrderBy { + argsStr: OrderBy + blockId: OrderBy + callId: OrderBy + extrinsicId: OrderBy + id: OrderBy + index: OrderBy + name: OrderBy + pallet: OrderBy + phase: OrderBy +} + +""" +Ordering options when selecting data from "event". +""" +input EventOrderBy { + args: OrderBy + argsStr: OrderBy + block: BlockOrderBy + blockId: OrderBy + call: CallOrderBy + callId: OrderBy + extrinsic: ExtrinsicOrderBy + extrinsicId: OrderBy + id: OrderBy + index: OrderBy + name: OrderBy + pallet: OrderBy + phase: OrderBy +} + +""" +select columns of table "event" +""" +enum EventSelectColumn { + """ + column name + """ + args + + """ + column name + """ + argsStr + + """ + column name + """ + blockId + + """ + column name + """ + callId + + """ + column name + """ + extrinsicId + + """ + column name + """ + id + + """ + column name + """ + index + + """ + column name + """ + name + + """ + column name + """ + pallet + + """ + column name + """ + phase +} + +""" +aggregate stddev on columns +""" +type EventStddevFields { + index: Float +} + +""" +order by stddev() on columns of table "event" +""" +input EventStddevOrderBy { + index: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type EventStddevPopFields { + index: Float +} + +""" +order by stddevPop() on columns of table "event" +""" +input EventStddevPopOrderBy { + index: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type EventStddevSampFields { + index: Float +} + +""" +order by stddevSamp() on columns of table "event" +""" +input EventStddevSampOrderBy { + index: OrderBy +} + +""" +Streaming cursor of the table "event" +""" +input EventStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: EventStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input EventStreamCursorValueInput { + args: jsonb + argsStr: [String!] + blockId: String + callId: String + extrinsicId: String + id: String + index: Int + name: String + pallet: String + phase: String +} + +""" +aggregate sum on columns +""" +type EventSumFields { + index: Int +} + +""" +order by sum() on columns of table "event" +""" +input EventSumOrderBy { + index: OrderBy +} + +enum EventTypeEnum { + CREATION + REMOVAL + RENEWAL +} + +""" +Boolean expression to compare columns of type "EventTypeEnum". All fields are combined with logical 'AND'. +""" +input EventTypeEnumComparisonExp { + _eq: EventTypeEnum + _in: [EventTypeEnum!] + _isNull: Boolean + _neq: EventTypeEnum + _nin: [EventTypeEnum!] +} + +""" +aggregate varPop on columns +""" +type EventVarPopFields { + index: Float +} + +""" +order by varPop() on columns of table "event" +""" +input EventVarPopOrderBy { + index: OrderBy +} + +""" +aggregate varSamp on columns +""" +type EventVarSampFields { + index: Float +} + +""" +order by varSamp() on columns of table "event" +""" +input EventVarSampOrderBy { + index: OrderBy +} + +""" +aggregate variance on columns +""" +type EventVarianceFields { + index: Float +} + +""" +order by variance() on columns of table "event" +""" +input EventVarianceOrderBy { + index: OrderBy +} + +""" +columns and relationships of "extrinsic" +""" +type Extrinsic { + """ + An object relationship + """ + block: Block + blockId: String + + """ + An object relationship + """ + call: Call + callId: String + + """ + An array relationship + """ + calls( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): [Call!]! + + """ + An aggregate relationship + """ + callsAggregate( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): CallAggregate! + error( + """ + JSON select path + """ + path: String + ): jsonb + + """ + An array relationship + """ + events( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): [Event!]! + + """ + An aggregate relationship + """ + eventsAggregate( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): EventAggregate! + fee: numeric + hash: bytea! + id: String! + index: Int! + signature( + """ + JSON select path + """ + path: String + ): jsonb + success: Boolean + tip: numeric + version: Int! +} + +""" +aggregated selection of "extrinsic" +""" +type ExtrinsicAggregate { + aggregate: ExtrinsicAggregateFields + nodes: [Extrinsic!]! +} + +input ExtrinsicAggregateBoolExp { + bool_and: extrinsicAggregateBoolExpBool_and + bool_or: extrinsicAggregateBoolExpBool_or + count: extrinsicAggregateBoolExpCount +} + +""" +aggregate fields of "extrinsic" +""" +type ExtrinsicAggregateFields { + avg: ExtrinsicAvgFields + count(columns: [ExtrinsicSelectColumn!], distinct: Boolean): Int! + max: ExtrinsicMaxFields + min: ExtrinsicMinFields + stddev: ExtrinsicStddevFields + stddevPop: ExtrinsicStddevPopFields + stddevSamp: ExtrinsicStddevSampFields + sum: ExtrinsicSumFields + varPop: ExtrinsicVarPopFields + varSamp: ExtrinsicVarSampFields + variance: ExtrinsicVarianceFields +} + +""" +order by aggregate values of table "extrinsic" +""" +input ExtrinsicAggregateOrderBy { + avg: ExtrinsicAvgOrderBy + count: OrderBy + max: ExtrinsicMaxOrderBy + min: ExtrinsicMinOrderBy + stddev: ExtrinsicStddevOrderBy + stddevPop: ExtrinsicStddevPopOrderBy + stddevSamp: ExtrinsicStddevSampOrderBy + sum: ExtrinsicSumOrderBy + varPop: ExtrinsicVarPopOrderBy + varSamp: ExtrinsicVarSampOrderBy + variance: ExtrinsicVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type ExtrinsicAvgFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by avg() on columns of table "extrinsic" +""" +input ExtrinsicAvgOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +Boolean expression to filter rows from the table "extrinsic". All fields are combined with a logical 'AND'. +""" +input ExtrinsicBoolExp { + _and: [ExtrinsicBoolExp!] + _not: ExtrinsicBoolExp + _or: [ExtrinsicBoolExp!] + block: BlockBoolExp + blockId: StringComparisonExp + call: CallBoolExp + callId: StringComparisonExp + calls: CallBoolExp + callsAggregate: CallAggregateBoolExp + error: JsonbComparisonExp + events: EventBoolExp + eventsAggregate: EventAggregateBoolExp + fee: NumericComparisonExp + hash: ByteaComparisonExp + id: StringComparisonExp + index: IntComparisonExp + signature: JsonbComparisonExp + success: BooleanComparisonExp + tip: NumericComparisonExp + version: IntComparisonExp +} + +""" +aggregate max on columns +""" +type ExtrinsicMaxFields { + blockId: String + callId: String + fee: numeric + id: String + index: Int + tip: numeric + version: Int +} + +""" +order by max() on columns of table "extrinsic" +""" +input ExtrinsicMaxOrderBy { + blockId: OrderBy + callId: OrderBy + fee: OrderBy + id: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +aggregate min on columns +""" +type ExtrinsicMinFields { + blockId: String + callId: String + fee: numeric + id: String + index: Int + tip: numeric + version: Int +} + +""" +order by min() on columns of table "extrinsic" +""" +input ExtrinsicMinOrderBy { + blockId: OrderBy + callId: OrderBy + fee: OrderBy + id: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +Ordering options when selecting data from "extrinsic". +""" +input ExtrinsicOrderBy { + block: BlockOrderBy + blockId: OrderBy + call: CallOrderBy + callId: OrderBy + callsAggregate: CallAggregateOrderBy + error: OrderBy + eventsAggregate: EventAggregateOrderBy + fee: OrderBy + hash: OrderBy + id: OrderBy + index: OrderBy + signature: OrderBy + success: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +select columns of table "extrinsic" +""" +enum ExtrinsicSelectColumn { + """ + column name + """ + blockId + + """ + column name + """ + callId + + """ + column name + """ + error + + """ + column name + """ + fee + + """ + column name + """ + hash + + """ + column name + """ + id + + """ + column name + """ + index + + """ + column name + """ + signature + + """ + column name + """ + success + + """ + column name + """ + tip + + """ + column name + """ + version +} + +""" +select "extrinsicAggregateBoolExpBool_andArgumentsColumns" columns of table "extrinsic" +""" +enum ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_andArgumentsColumns { + """ + column name + """ + success +} + +""" +select "extrinsicAggregateBoolExpBool_orArgumentsColumns" columns of table "extrinsic" +""" +enum ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_orArgumentsColumns { + """ + column name + """ + success +} + +""" +aggregate stddev on columns +""" +type ExtrinsicStddevFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by stddev() on columns of table "extrinsic" +""" +input ExtrinsicStddevOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type ExtrinsicStddevPopFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by stddevPop() on columns of table "extrinsic" +""" +input ExtrinsicStddevPopOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type ExtrinsicStddevSampFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by stddevSamp() on columns of table "extrinsic" +""" +input ExtrinsicStddevSampOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +Streaming cursor of the table "extrinsic" +""" +input ExtrinsicStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: ExtrinsicStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input ExtrinsicStreamCursorValueInput { + blockId: String + callId: String + error: jsonb + fee: numeric + hash: bytea + id: String + index: Int + signature: jsonb + success: Boolean + tip: numeric + version: Int +} + +""" +aggregate sum on columns +""" +type ExtrinsicSumFields { + fee: numeric + index: Int + tip: numeric + version: Int +} + +""" +order by sum() on columns of table "extrinsic" +""" +input ExtrinsicSumOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +aggregate varPop on columns +""" +type ExtrinsicVarPopFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by varPop() on columns of table "extrinsic" +""" +input ExtrinsicVarPopOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +aggregate varSamp on columns +""" +type ExtrinsicVarSampFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by varSamp() on columns of table "extrinsic" +""" +input ExtrinsicVarSampOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +aggregate variance on columns +""" +type ExtrinsicVarianceFields { + fee: Float + index: Float + tip: Float + version: Float +} + +""" +order by variance() on columns of table "extrinsic" +""" +input ExtrinsicVarianceOrderBy { + fee: OrderBy + index: OrderBy + tip: OrderBy + version: OrderBy +} + +""" +columns and relationships of "identity" +""" +type Identity { + """ + An object relationship + """ + account: Account + accountId: String + + """ + An array relationship + """ + certIssued( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): [Cert!]! + + """ + An aggregate relationship + """ + certIssuedAggregate( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): CertAggregate! + + """ + An array relationship + """ + certReceived( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): [Cert!]! + + """ + An aggregate relationship + """ + certReceivedAggregate( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): CertAggregate! + + """ + An object relationship + """ + createdIn: Event + createdInId: String + createdOn: Int! + expireOn: Int! + id: String! + index: Int! + isMember: Boolean! + lastChangeOn: Int! + + """ + An array relationship + """ + linkedAccount( + """ + distinct select on columns + """ + distinctOn: [AccountSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [AccountOrderBy!] + + """ + filter the rows returned + """ + where: AccountBoolExp + ): [Account!]! + + """ + An aggregate relationship + """ + linkedAccountAggregate( + """ + distinct select on columns + """ + distinctOn: [AccountSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [AccountOrderBy!] + + """ + filter the rows returned + """ + where: AccountBoolExp + ): AccountAggregate! + + """ + An array relationship + """ + membershipHistory( + """ + distinct select on columns + """ + distinctOn: [MembershipEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [MembershipEventOrderBy!] + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): [MembershipEvent!]! + + """ + An aggregate relationship + """ + membershipHistoryAggregate( + """ + distinct select on columns + """ + distinctOn: [MembershipEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [MembershipEventOrderBy!] + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): MembershipEventAggregate! + name: String! + + """ + An array relationship + """ + ownerKeyChange( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): [ChangeOwnerKey!]! + + """ + An aggregate relationship + """ + ownerKeyChangeAggregate( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): ChangeOwnerKeyAggregate! + + """ + An array relationship + """ + smithCertIssued( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): [SmithCert!]! + + """ + An aggregate relationship + """ + smithCertIssuedAggregate( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): SmithCertAggregate! + + """ + An array relationship + """ + smithCertReceived( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): [SmithCert!]! + + """ + An aggregate relationship + """ + smithCertReceivedAggregate( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): SmithCertAggregate! + smithStatus: SmithStatusEnum + status: IdentityStatusEnum + + """ + "Get UD History by Identity" + """ + udHistory( + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): [UdHistory!] +} + +""" +aggregated selection of "identity" +""" +type IdentityAggregate { + aggregate: IdentityAggregateFields + nodes: [Identity!]! +} + +""" +aggregate fields of "identity" +""" +type IdentityAggregateFields { + avg: IdentityAvgFields + count(columns: [IdentitySelectColumn!], distinct: Boolean): Int! + max: IdentityMaxFields + min: IdentityMinFields + stddev: IdentityStddevFields + stddevPop: IdentityStddevPopFields + stddevSamp: IdentityStddevSampFields + sum: IdentitySumFields + varPop: IdentityVarPopFields + varSamp: IdentityVarSampFields + variance: IdentityVarianceFields +} + +""" +aggregate avg on columns +""" +type IdentityAvgFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +Boolean expression to filter rows from the table "identity". All fields are combined with a logical 'AND'. +""" +input IdentityBoolExp { + _and: [IdentityBoolExp!] + _not: IdentityBoolExp + _or: [IdentityBoolExp!] + account: AccountBoolExp + accountId: StringComparisonExp + certIssued: CertBoolExp + certIssuedAggregate: CertAggregateBoolExp + certReceived: CertBoolExp + certReceivedAggregate: CertAggregateBoolExp + createdIn: EventBoolExp + createdInId: StringComparisonExp + createdOn: IntComparisonExp + expireOn: IntComparisonExp + id: StringComparisonExp + index: IntComparisonExp + isMember: BooleanComparisonExp + lastChangeOn: IntComparisonExp + linkedAccount: AccountBoolExp + linkedAccountAggregate: AccountAggregateBoolExp + membershipHistory: MembershipEventBoolExp + membershipHistoryAggregate: MembershipEventAggregateBoolExp + name: StringComparisonExp + ownerKeyChange: ChangeOwnerKeyBoolExp + ownerKeyChangeAggregate: ChangeOwnerKeyAggregateBoolExp + smithCertIssued: SmithCertBoolExp + smithCertIssuedAggregate: SmithCertAggregateBoolExp + smithCertReceived: SmithCertBoolExp + smithCertReceivedAggregate: SmithCertAggregateBoolExp + smithStatus: SmithStatusEnumComparisonExp + status: IdentityStatusEnumComparisonExp + udHistory: UdHistoryBoolExp +} + +""" +aggregate max on columns +""" +type IdentityMaxFields { + accountId: String + createdInId: String + createdOn: Int + expireOn: Int + id: String + index: Int + lastChangeOn: Int + name: String +} + +""" +aggregate min on columns +""" +type IdentityMinFields { + accountId: String + createdInId: String + createdOn: Int + expireOn: Int + id: String + index: Int + lastChangeOn: Int + name: String +} + +""" +Ordering options when selecting data from "identity". +""" +input IdentityOrderBy { + account: AccountOrderBy + accountId: OrderBy + certIssuedAggregate: CertAggregateOrderBy + certReceivedAggregate: CertAggregateOrderBy + createdIn: EventOrderBy + createdInId: OrderBy + createdOn: OrderBy + expireOn: OrderBy + id: OrderBy + index: OrderBy + isMember: OrderBy + lastChangeOn: OrderBy + linkedAccountAggregate: AccountAggregateOrderBy + membershipHistoryAggregate: MembershipEventAggregateOrderBy + name: OrderBy + ownerKeyChangeAggregate: ChangeOwnerKeyAggregateOrderBy + smithCertIssuedAggregate: SmithCertAggregateOrderBy + smithCertReceivedAggregate: SmithCertAggregateOrderBy + smithStatus: OrderBy + status: OrderBy + udHistoryAggregate: UdHistoryAggregateOrderBy +} + +""" +select columns of table "identity" +""" +enum IdentitySelectColumn { + """ + column name + """ + accountId + + """ + column name + """ + createdInId + + """ + column name + """ + createdOn + + """ + column name + """ + expireOn + + """ + column name + """ + id + + """ + column name + """ + index + + """ + column name + """ + isMember + + """ + column name + """ + lastChangeOn + + """ + column name + """ + name + + """ + column name + """ + smithStatus + + """ + column name + """ + status +} + +enum IdentityStatusEnum { + MEMBER + NOTMEMBER + REMOVED + REVOKED + UNCONFIRMED + UNVALIDATED +} + +""" +Boolean expression to compare columns of type "IdentityStatusEnum". All fields are combined with logical 'AND'. +""" +input IdentityStatusEnumComparisonExp { + _eq: IdentityStatusEnum + _in: [IdentityStatusEnum!] + _isNull: Boolean + _neq: IdentityStatusEnum + _nin: [IdentityStatusEnum!] +} + +""" +aggregate stddev on columns +""" +type IdentityStddevFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +aggregate stddevPop on columns +""" +type IdentityStddevPopFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +aggregate stddevSamp on columns +""" +type IdentityStddevSampFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +Streaming cursor of the table "identity" +""" +input IdentityStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: IdentityStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input IdentityStreamCursorValueInput { + accountId: String + createdInId: String + createdOn: Int + expireOn: Int + id: String + index: Int + isMember: Boolean + lastChangeOn: Int + name: String + smithStatus: SmithStatusEnum + status: IdentityStatusEnum +} + +""" +aggregate sum on columns +""" +type IdentitySumFields { + createdOn: Int + expireOn: Int + index: Int + lastChangeOn: Int +} + +""" +aggregate varPop on columns +""" +type IdentityVarPopFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +aggregate varSamp on columns +""" +type IdentityVarSampFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +aggregate variance on columns +""" +type IdentityVarianceFields { + createdOn: Float + expireOn: Float + index: Float + lastChangeOn: Float +} + +""" +Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. +""" +input IntArrayComparisonExp { + """ + is the array contained in the given array value + """ + _containedIn: [Int!] + + """ + does the array contain the given value + """ + _contains: [Int!] + _eq: [Int!] + _gt: [Int!] + _gte: [Int!] + _in: [[Int!]!] + _isNull: Boolean + _lt: [Int!] + _lte: [Int!] + _neq: [Int!] + _nin: [[Int!]!] +} + +""" +Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. +""" +input IntComparisonExp { + _eq: Int + _gt: Int + _gte: Int + _in: [Int!] + _isNull: Boolean + _lt: Int + _lte: Int + _neq: Int + _nin: [Int!] +} + +enum ItemTypeEnum { + CALLS + EVENTS + EXTRINSICS +} + +""" +Boolean expression to compare columns of type "ItemTypeEnum". All fields are combined with logical 'AND'. +""" +input ItemTypeEnumComparisonExp { + _eq: ItemTypeEnum + _in: [ItemTypeEnum!] + _isNull: Boolean + _neq: ItemTypeEnum + _nin: [ItemTypeEnum!] +} + +""" +columns and relationships of "items_counter" +""" +type ItemsCounter { + id: String! + level: CounterLevelEnum + total: Int! + type: ItemTypeEnum +} + +""" +aggregated selection of "items_counter" +""" +type ItemsCounterAggregate { + aggregate: ItemsCounterAggregateFields + nodes: [ItemsCounter!]! +} + +""" +aggregate fields of "items_counter" +""" +type ItemsCounterAggregateFields { + avg: ItemsCounterAvgFields + count(columns: [ItemsCounterSelectColumn!], distinct: Boolean): Int! + max: ItemsCounterMaxFields + min: ItemsCounterMinFields + stddev: ItemsCounterStddevFields + stddevPop: ItemsCounterStddevPopFields + stddevSamp: ItemsCounterStddevSampFields + sum: ItemsCounterSumFields + varPop: ItemsCounterVarPopFields + varSamp: ItemsCounterVarSampFields + variance: ItemsCounterVarianceFields +} + +""" +aggregate avg on columns +""" +type ItemsCounterAvgFields { + total: Float +} + +""" +Boolean expression to filter rows from the table "items_counter". All fields are combined with a logical 'AND'. +""" +input ItemsCounterBoolExp { + _and: [ItemsCounterBoolExp!] + _not: ItemsCounterBoolExp + _or: [ItemsCounterBoolExp!] + id: StringComparisonExp + level: CounterLevelEnumComparisonExp + total: IntComparisonExp + type: ItemTypeEnumComparisonExp +} + +""" +aggregate max on columns +""" +type ItemsCounterMaxFields { + id: String + total: Int +} + +""" +aggregate min on columns +""" +type ItemsCounterMinFields { + id: String + total: Int +} + +""" +Ordering options when selecting data from "items_counter". +""" +input ItemsCounterOrderBy { + id: OrderBy + level: OrderBy + total: OrderBy + type: OrderBy +} + +""" +select columns of table "items_counter" +""" +enum ItemsCounterSelectColumn { + """ + column name + """ + id + + """ + column name + """ + level + + """ + column name + """ + total + + """ + column name + """ + type +} + +""" +aggregate stddev on columns +""" +type ItemsCounterStddevFields { + total: Float +} + +""" +aggregate stddevPop on columns +""" +type ItemsCounterStddevPopFields { + total: Float +} + +""" +aggregate stddevSamp on columns +""" +type ItemsCounterStddevSampFields { + total: Float +} + +""" +Streaming cursor of the table "items_counter" +""" +input ItemsCounterStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: ItemsCounterStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input ItemsCounterStreamCursorValueInput { + id: String + level: CounterLevelEnum + total: Int + type: ItemTypeEnum +} + +""" +aggregate sum on columns +""" +type ItemsCounterSumFields { + total: Int +} + +""" +aggregate varPop on columns +""" +type ItemsCounterVarPopFields { + total: Float +} + +""" +aggregate varSamp on columns +""" +type ItemsCounterVarSampFields { + total: Float +} + +""" +aggregate variance on columns +""" +type ItemsCounterVarianceFields { + total: Float +} + +input JsonbCastExp { + String: StringComparisonExp +} + +""" +Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. +""" +input JsonbComparisonExp { + _cast: JsonbCastExp + + """ + is the column contained in the given json value + """ + _containedIn: jsonb + + """ + does the column contain the given json value at the top level + """ + _contains: jsonb + _eq: jsonb + _gt: jsonb + _gte: jsonb + + """ + does the string exist as a top-level key in the column + """ + _hasKey: String + + """ + do all of these strings exist as top-level keys in the column + """ + _hasKeysAll: [String!] + + """ + do any of these strings exist as top-level keys in the column + """ + _hasKeysAny: [String!] + _in: [jsonb!] + _isNull: Boolean + _lt: jsonb + _lte: jsonb + _neq: jsonb + _nin: [jsonb!] +} + +""" +columns and relationships of "membership_event" +""" +type MembershipEvent { + blockNumber: Int! + + """ + An object relationship + """ + event: Event + eventId: String + eventType: EventTypeEnum + id: String! + + """ + An object relationship + """ + identity: Identity + identityId: String +} + +""" +aggregated selection of "membership_event" +""" +type MembershipEventAggregate { + aggregate: MembershipEventAggregateFields + nodes: [MembershipEvent!]! +} + +input MembershipEventAggregateBoolExp { + count: membershipEventAggregateBoolExpCount +} + +""" +aggregate fields of "membership_event" +""" +type MembershipEventAggregateFields { + avg: MembershipEventAvgFields + count(columns: [MembershipEventSelectColumn!], distinct: Boolean): Int! + max: MembershipEventMaxFields + min: MembershipEventMinFields + stddev: MembershipEventStddevFields + stddevPop: MembershipEventStddevPopFields + stddevSamp: MembershipEventStddevSampFields + sum: MembershipEventSumFields + varPop: MembershipEventVarPopFields + varSamp: MembershipEventVarSampFields + variance: MembershipEventVarianceFields +} + +""" +order by aggregate values of table "membership_event" +""" +input MembershipEventAggregateOrderBy { + avg: MembershipEventAvgOrderBy + count: OrderBy + max: MembershipEventMaxOrderBy + min: MembershipEventMinOrderBy + stddev: MembershipEventStddevOrderBy + stddevPop: MembershipEventStddevPopOrderBy + stddevSamp: MembershipEventStddevSampOrderBy + sum: MembershipEventSumOrderBy + varPop: MembershipEventVarPopOrderBy + varSamp: MembershipEventVarSampOrderBy + variance: MembershipEventVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type MembershipEventAvgFields { + blockNumber: Float +} + +""" +order by avg() on columns of table "membership_event" +""" +input MembershipEventAvgOrderBy { + blockNumber: OrderBy +} + +""" +Boolean expression to filter rows from the table "membership_event". All fields are combined with a logical 'AND'. +""" +input MembershipEventBoolExp { + _and: [MembershipEventBoolExp!] + _not: MembershipEventBoolExp + _or: [MembershipEventBoolExp!] + blockNumber: IntComparisonExp + event: EventBoolExp + eventId: StringComparisonExp + eventType: EventTypeEnumComparisonExp + id: StringComparisonExp + identity: IdentityBoolExp + identityId: StringComparisonExp +} + +""" +aggregate max on columns +""" +type MembershipEventMaxFields { + blockNumber: Int + eventId: String + id: String + identityId: String +} + +""" +order by max() on columns of table "membership_event" +""" +input MembershipEventMaxOrderBy { + blockNumber: OrderBy + eventId: OrderBy + id: OrderBy + identityId: OrderBy +} + +""" +aggregate min on columns +""" +type MembershipEventMinFields { + blockNumber: Int + eventId: String + id: String + identityId: String +} + +""" +order by min() on columns of table "membership_event" +""" +input MembershipEventMinOrderBy { + blockNumber: OrderBy + eventId: OrderBy + id: OrderBy + identityId: OrderBy +} + +""" +Ordering options when selecting data from "membership_event". +""" +input MembershipEventOrderBy { + blockNumber: OrderBy + event: EventOrderBy + eventId: OrderBy + eventType: OrderBy + id: OrderBy + identity: IdentityOrderBy + identityId: OrderBy +} + +""" +select columns of table "membership_event" +""" +enum MembershipEventSelectColumn { + """ + column name + """ + blockNumber + + """ + column name + """ + eventId + + """ + column name + """ + eventType + + """ + column name + """ + id + + """ + column name + """ + identityId +} + +""" +aggregate stddev on columns +""" +type MembershipEventStddevFields { + blockNumber: Float +} + +""" +order by stddev() on columns of table "membership_event" +""" +input MembershipEventStddevOrderBy { + blockNumber: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type MembershipEventStddevPopFields { + blockNumber: Float +} + +""" +order by stddevPop() on columns of table "membership_event" +""" +input MembershipEventStddevPopOrderBy { + blockNumber: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type MembershipEventStddevSampFields { + blockNumber: Float +} + +""" +order by stddevSamp() on columns of table "membership_event" +""" +input MembershipEventStddevSampOrderBy { + blockNumber: OrderBy +} + +""" +Streaming cursor of the table "membership_event" +""" +input MembershipEventStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: MembershipEventStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input MembershipEventStreamCursorValueInput { + blockNumber: Int + eventId: String + eventType: EventTypeEnum + id: String + identityId: String +} + +""" +aggregate sum on columns +""" +type MembershipEventSumFields { + blockNumber: Int +} + +""" +order by sum() on columns of table "membership_event" +""" +input MembershipEventSumOrderBy { + blockNumber: OrderBy +} + +""" +aggregate varPop on columns +""" +type MembershipEventVarPopFields { + blockNumber: Float +} + +""" +order by varPop() on columns of table "membership_event" +""" +input MembershipEventVarPopOrderBy { + blockNumber: OrderBy +} + +""" +aggregate varSamp on columns +""" +type MembershipEventVarSampFields { + blockNumber: Float +} + +""" +order by varSamp() on columns of table "membership_event" +""" +input MembershipEventVarSampOrderBy { + blockNumber: OrderBy +} + +""" +aggregate variance on columns +""" +type MembershipEventVarianceFields { + blockNumber: Float +} + +""" +order by variance() on columns of table "membership_event" +""" +input MembershipEventVarianceOrderBy { + blockNumber: OrderBy +} + +""" +Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'. +""" +input NumericComparisonExp { + _eq: numeric + _gt: numeric + _gte: numeric + _in: [numeric!] + _isNull: Boolean + _lt: numeric + _lte: numeric + _neq: numeric + _nin: [numeric!] +} + +""" +column ordering options +""" +enum OrderBy { + """ + in ascending order, nulls last + """ + ASC + + """ + in ascending order, nulls first + """ + ASC_NULLS_FIRST + + """ + in ascending order, nulls last + """ + ASC_NULLS_LAST + + """ + in descending order, nulls first + """ + DESC + + """ + in descending order, nulls first + """ + DESC_NULLS_FIRST + + """ + in descending order, nulls last + """ + DESC_NULLS_LAST +} + +""" +columns and relationships of "smith_cert" +""" +type SmithCert { + createdOn: Int! + id: String! + + """ + An object relationship + """ + issuer: Identity + issuerId: String + + """ + An object relationship + """ + receiver: Identity + receiverId: String +} + +""" +aggregated selection of "smith_cert" +""" +type SmithCertAggregate { + aggregate: SmithCertAggregateFields + nodes: [SmithCert!]! +} + +input SmithCertAggregateBoolExp { + count: smithCertAggregateBoolExpCount +} + +""" +aggregate fields of "smith_cert" +""" +type SmithCertAggregateFields { + avg: SmithCertAvgFields + count(columns: [SmithCertSelectColumn!], distinct: Boolean): Int! + max: SmithCertMaxFields + min: SmithCertMinFields + stddev: SmithCertStddevFields + stddevPop: SmithCertStddevPopFields + stddevSamp: SmithCertStddevSampFields + sum: SmithCertSumFields + varPop: SmithCertVarPopFields + varSamp: SmithCertVarSampFields + variance: SmithCertVarianceFields +} + +""" +order by aggregate values of table "smith_cert" +""" +input SmithCertAggregateOrderBy { + avg: SmithCertAvgOrderBy + count: OrderBy + max: SmithCertMaxOrderBy + min: SmithCertMinOrderBy + stddev: SmithCertStddevOrderBy + stddevPop: SmithCertStddevPopOrderBy + stddevSamp: SmithCertStddevSampOrderBy + sum: SmithCertSumOrderBy + varPop: SmithCertVarPopOrderBy + varSamp: SmithCertVarSampOrderBy + variance: SmithCertVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type SmithCertAvgFields { + createdOn: Float +} + +""" +order by avg() on columns of table "smith_cert" +""" +input SmithCertAvgOrderBy { + createdOn: OrderBy +} + +""" +Boolean expression to filter rows from the table "smith_cert". All fields are combined with a logical 'AND'. +""" +input SmithCertBoolExp { + _and: [SmithCertBoolExp!] + _not: SmithCertBoolExp + _or: [SmithCertBoolExp!] + createdOn: IntComparisonExp + id: StringComparisonExp + issuer: IdentityBoolExp + issuerId: StringComparisonExp + receiver: IdentityBoolExp + receiverId: StringComparisonExp +} + +""" +aggregate max on columns +""" +type SmithCertMaxFields { + createdOn: Int + id: String + issuerId: String + receiverId: String +} + +""" +order by max() on columns of table "smith_cert" +""" +input SmithCertMaxOrderBy { + createdOn: OrderBy + id: OrderBy + issuerId: OrderBy + receiverId: OrderBy +} + +""" +aggregate min on columns +""" +type SmithCertMinFields { + createdOn: Int + id: String + issuerId: String + receiverId: String +} + +""" +order by min() on columns of table "smith_cert" +""" +input SmithCertMinOrderBy { + createdOn: OrderBy + id: OrderBy + issuerId: OrderBy + receiverId: OrderBy +} + +""" +Ordering options when selecting data from "smith_cert". +""" +input SmithCertOrderBy { + createdOn: OrderBy + id: OrderBy + issuer: IdentityOrderBy + issuerId: OrderBy + receiver: IdentityOrderBy + receiverId: OrderBy +} + +""" +select columns of table "smith_cert" +""" +enum SmithCertSelectColumn { + """ + column name + """ + createdOn + + """ + column name + """ + id + + """ + column name + """ + issuerId + + """ + column name + """ + receiverId +} + +""" +aggregate stddev on columns +""" +type SmithCertStddevFields { + createdOn: Float +} + +""" +order by stddev() on columns of table "smith_cert" +""" +input SmithCertStddevOrderBy { + createdOn: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type SmithCertStddevPopFields { + createdOn: Float +} + +""" +order by stddevPop() on columns of table "smith_cert" +""" +input SmithCertStddevPopOrderBy { + createdOn: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type SmithCertStddevSampFields { + createdOn: Float +} + +""" +order by stddevSamp() on columns of table "smith_cert" +""" +input SmithCertStddevSampOrderBy { + createdOn: OrderBy +} + +""" +Streaming cursor of the table "smith_cert" +""" +input SmithCertStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: SmithCertStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input SmithCertStreamCursorValueInput { + createdOn: Int + id: String + issuerId: String + receiverId: String +} + +""" +aggregate sum on columns +""" +type SmithCertSumFields { + createdOn: Int +} + +""" +order by sum() on columns of table "smith_cert" +""" +input SmithCertSumOrderBy { + createdOn: OrderBy +} + +""" +aggregate varPop on columns +""" +type SmithCertVarPopFields { + createdOn: Float +} + +""" +order by varPop() on columns of table "smith_cert" +""" +input SmithCertVarPopOrderBy { + createdOn: OrderBy +} + +""" +aggregate varSamp on columns +""" +type SmithCertVarSampFields { + createdOn: Float +} + +""" +order by varSamp() on columns of table "smith_cert" +""" +input SmithCertVarSampOrderBy { + createdOn: OrderBy +} + +""" +aggregate variance on columns +""" +type SmithCertVarianceFields { + createdOn: Float +} + +""" +order by variance() on columns of table "smith_cert" +""" +input SmithCertVarianceOrderBy { + createdOn: OrderBy +} + +enum SmithStatusEnum { + EXCLUDED + INVITED + PENDING + SMITH +} + +""" +Boolean expression to compare columns of type "SmithStatusEnum". All fields are combined with logical 'AND'. +""" +input SmithStatusEnumComparisonExp { + _eq: SmithStatusEnum + _in: [SmithStatusEnum!] + _isNull: Boolean + _neq: SmithStatusEnum + _nin: [SmithStatusEnum!] +} + +""" +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. +""" +input StringArrayComparisonExp { + """ + is the array contained in the given array value + """ + _containedIn: [String!] + + """ + does the array contain the given value + """ + _contains: [String!] + _eq: [String!] + _gt: [String!] + _gte: [String!] + _in: [[String!]!] + _isNull: Boolean + _lt: [String!] + _lte: [String!] + _neq: [String!] + _nin: [[String!]!] +} + +""" +Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. +""" +input StringComparisonExp { + _eq: String + _gt: String + _gte: String + + """ + does the column match the given case-insensitive pattern + """ + _ilike: String + _in: [String!] + + """ + does the column match the given POSIX regular expression, case insensitive + """ + _iregex: String + _isNull: Boolean + + """ + does the column match the given pattern + """ + _like: String + _lt: String + _lte: String + _neq: String + + """ + does the column NOT match the given case-insensitive pattern + """ + _nilike: String + _nin: [String!] + + """ + does the column NOT match the given POSIX regular expression, case insensitive + """ + _niregex: String + + """ + does the column NOT match the given pattern + """ + _nlike: String + + """ + does the column NOT match the given POSIX regular expression, case sensitive + """ + _nregex: String + + """ + does the column NOT match the given SQL regular expression + """ + _nsimilar: String + + """ + does the column match the given POSIX regular expression, case sensitive + """ + _regex: String + + """ + does the column match the given SQL regular expression + """ + _similar: String +} + +""" +Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. +""" +input TimestamptzComparisonExp { + _eq: timestamptz + _gt: timestamptz + _gte: timestamptz + _in: [timestamptz!] + _isNull: Boolean + _lt: timestamptz + _lte: timestamptz + _neq: timestamptz + _nin: [timestamptz!] +} + +""" +columns and relationships of "transfer" +""" +type Transfer { + amount: numeric! + blockNumber: Int! + comment: String + + """ + An object relationship + """ + from: Account + fromId: String + id: String! + timestamp: timestamptz! + + """ + An object relationship + """ + to: Account + toId: String +} + +""" +aggregated selection of "transfer" +""" +type TransferAggregate { + aggregate: TransferAggregateFields + nodes: [Transfer!]! +} + +input TransferAggregateBoolExp { + count: transferAggregateBoolExpCount +} + +""" +aggregate fields of "transfer" +""" +type TransferAggregateFields { + avg: TransferAvgFields + count(columns: [TransferSelectColumn!], distinct: Boolean): Int! + max: TransferMaxFields + min: TransferMinFields + stddev: TransferStddevFields + stddevPop: TransferStddevPopFields + stddevSamp: TransferStddevSampFields + sum: TransferSumFields + varPop: TransferVarPopFields + varSamp: TransferVarSampFields + variance: TransferVarianceFields +} + +""" +order by aggregate values of table "transfer" +""" +input TransferAggregateOrderBy { + avg: TransferAvgOrderBy + count: OrderBy + max: TransferMaxOrderBy + min: TransferMinOrderBy + stddev: TransferStddevOrderBy + stddevPop: TransferStddevPopOrderBy + stddevSamp: TransferStddevSampOrderBy + sum: TransferSumOrderBy + varPop: TransferVarPopOrderBy + varSamp: TransferVarSampOrderBy + variance: TransferVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type TransferAvgFields { + amount: Float + blockNumber: Float +} + +""" +order by avg() on columns of table "transfer" +""" +input TransferAvgOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +Boolean expression to filter rows from the table "transfer". All fields are combined with a logical 'AND'. +""" +input TransferBoolExp { + _and: [TransferBoolExp!] + _not: TransferBoolExp + _or: [TransferBoolExp!] + amount: NumericComparisonExp + blockNumber: IntComparisonExp + comment: StringComparisonExp + from: AccountBoolExp + fromId: StringComparisonExp + id: StringComparisonExp + timestamp: TimestamptzComparisonExp + to: AccountBoolExp + toId: StringComparisonExp +} + +""" +aggregate max on columns +""" +type TransferMaxFields { + amount: numeric + blockNumber: Int + comment: String + fromId: String + id: String + timestamp: timestamptz + toId: String +} + +""" +order by max() on columns of table "transfer" +""" +input TransferMaxOrderBy { + amount: OrderBy + blockNumber: OrderBy + comment: OrderBy + fromId: OrderBy + id: OrderBy + timestamp: OrderBy + toId: OrderBy +} + +""" +aggregate min on columns +""" +type TransferMinFields { + amount: numeric + blockNumber: Int + comment: String + fromId: String + id: String + timestamp: timestamptz + toId: String +} + +""" +order by min() on columns of table "transfer" +""" +input TransferMinOrderBy { + amount: OrderBy + blockNumber: OrderBy + comment: OrderBy + fromId: OrderBy + id: OrderBy + timestamp: OrderBy + toId: OrderBy +} + +""" +Ordering options when selecting data from "transfer". +""" +input TransferOrderBy { + amount: OrderBy + blockNumber: OrderBy + comment: OrderBy + from: AccountOrderBy + fromId: OrderBy + id: OrderBy + timestamp: OrderBy + to: AccountOrderBy + toId: OrderBy +} + +""" +select columns of table "transfer" +""" +enum TransferSelectColumn { + """ + column name + """ + amount + + """ + column name + """ + blockNumber + + """ + column name + """ + comment + + """ + column name + """ + fromId + + """ + column name + """ + id + + """ + column name + """ + timestamp + + """ + column name + """ + toId +} + +""" +aggregate stddev on columns +""" +type TransferStddevFields { + amount: Float + blockNumber: Float +} + +""" +order by stddev() on columns of table "transfer" +""" +input TransferStddevOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type TransferStddevPopFields { + amount: Float + blockNumber: Float +} + +""" +order by stddevPop() on columns of table "transfer" +""" +input TransferStddevPopOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type TransferStddevSampFields { + amount: Float + blockNumber: Float +} + +""" +order by stddevSamp() on columns of table "transfer" +""" +input TransferStddevSampOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +Streaming cursor of the table "transfer" +""" +input TransferStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: TransferStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input TransferStreamCursorValueInput { + amount: numeric + blockNumber: Int + comment: String + fromId: String + id: String + timestamp: timestamptz + toId: String +} + +""" +aggregate sum on columns +""" +type TransferSumFields { + amount: numeric + blockNumber: Int +} + +""" +order by sum() on columns of table "transfer" +""" +input TransferSumOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate varPop on columns +""" +type TransferVarPopFields { + amount: Float + blockNumber: Float +} + +""" +order by varPop() on columns of table "transfer" +""" +input TransferVarPopOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate varSamp on columns +""" +type TransferVarSampFields { + amount: Float + blockNumber: Float +} + +""" +order by varSamp() on columns of table "transfer" +""" +input TransferVarSampOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate variance on columns +""" +type TransferVarianceFields { + amount: Float + blockNumber: Float +} + +""" +order by variance() on columns of table "transfer" +""" +input TransferVarianceOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +columns and relationships of "ud_history" +""" +type UdHistory { + amount: Int! + blockNumber: Int! + id: String! + + """ + An object relationship + """ + identity: Identity + identityId: String + timestamp: timestamptz! +} + +type UdHistoryAggregate { + aggregate: UdHistoryAggregateFields + nodes: [UdHistory!]! +} + +""" +aggregate fields of "ud_history" +""" +type UdHistoryAggregateFields { + avg: UdHistoryAvgFields + count(columns: [UdHistorySelectColumn!], distinct: Boolean): Int! + max: UdHistoryMaxFields + min: UdHistoryMinFields + stddev: UdHistoryStddevFields + stddevPop: UdHistoryStddevPopFields + stddevSamp: UdHistoryStddevSampFields + sum: UdHistorySumFields + varPop: UdHistoryVarPopFields + varSamp: UdHistoryVarSampFields + variance: UdHistoryVarianceFields +} + +""" +order by aggregate values of table "ud_history" +""" +input UdHistoryAggregateOrderBy { + avg: UdHistoryAvgOrderBy + count: OrderBy + max: UdHistoryMaxOrderBy + min: UdHistoryMinOrderBy + stddev: UdHistoryStddevOrderBy + stddevPop: UdHistoryStddevPopOrderBy + stddevSamp: UdHistoryStddevSampOrderBy + sum: UdHistorySumOrderBy + varPop: UdHistoryVarPopOrderBy + varSamp: UdHistoryVarSampOrderBy + variance: UdHistoryVarianceOrderBy +} + +""" +aggregate avg on columns +""" +type UdHistoryAvgFields { + amount: Float + blockNumber: Float +} + +""" +order by avg() on columns of table "ud_history" +""" +input UdHistoryAvgOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +Boolean expression to filter rows from the table "ud_history". All fields are combined with a logical 'AND'. +""" +input UdHistoryBoolExp { + _and: [UdHistoryBoolExp!] + _not: UdHistoryBoolExp + _or: [UdHistoryBoolExp!] + amount: IntComparisonExp + blockNumber: IntComparisonExp + id: StringComparisonExp + identity: IdentityBoolExp + identityId: StringComparisonExp + timestamp: TimestamptzComparisonExp +} + +""" +aggregate max on columns +""" +type UdHistoryMaxFields { + amount: Int + blockNumber: Int + id: String + identityId: String + timestamp: timestamptz +} + +""" +order by max() on columns of table "ud_history" +""" +input UdHistoryMaxOrderBy { + amount: OrderBy + blockNumber: OrderBy + id: OrderBy + identityId: OrderBy + timestamp: OrderBy +} + +""" +aggregate min on columns +""" +type UdHistoryMinFields { + amount: Int + blockNumber: Int + id: String + identityId: String + timestamp: timestamptz +} + +""" +order by min() on columns of table "ud_history" +""" +input UdHistoryMinOrderBy { + amount: OrderBy + blockNumber: OrderBy + id: OrderBy + identityId: OrderBy + timestamp: OrderBy +} + +""" +Ordering options when selecting data from "ud_history". +""" +input UdHistoryOrderBy { + amount: OrderBy + blockNumber: OrderBy + id: OrderBy + identity: IdentityOrderBy + identityId: OrderBy + timestamp: OrderBy +} + +""" +select columns of table "ud_history" +""" +enum UdHistorySelectColumn { + """ + column name + """ + amount + + """ + column name + """ + blockNumber + + """ + column name + """ + id + + """ + column name + """ + identityId + + """ + column name + """ + timestamp +} + +""" +aggregate stddev on columns +""" +type UdHistoryStddevFields { + amount: Float + blockNumber: Float +} + +""" +order by stddev() on columns of table "ud_history" +""" +input UdHistoryStddevOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate stddevPop on columns +""" +type UdHistoryStddevPopFields { + amount: Float + blockNumber: Float +} + +""" +order by stddevPop() on columns of table "ud_history" +""" +input UdHistoryStddevPopOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate stddevSamp on columns +""" +type UdHistoryStddevSampFields { + amount: Float + blockNumber: Float +} + +""" +order by stddevSamp() on columns of table "ud_history" +""" +input UdHistoryStddevSampOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +Streaming cursor of the table "ud_history" +""" +input UdHistoryStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: UdHistoryStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input UdHistoryStreamCursorValueInput { + amount: Int + blockNumber: Int + id: String + identityId: String + timestamp: timestamptz +} + +""" +aggregate sum on columns +""" +type UdHistorySumFields { + amount: Int + blockNumber: Int +} + +""" +order by sum() on columns of table "ud_history" +""" +input UdHistorySumOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate varPop on columns +""" +type UdHistoryVarPopFields { + amount: Float + blockNumber: Float +} + +""" +order by varPop() on columns of table "ud_history" +""" +input UdHistoryVarPopOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate varSamp on columns +""" +type UdHistoryVarSampFields { + amount: Float + blockNumber: Float +} + +""" +order by varSamp() on columns of table "ud_history" +""" +input UdHistoryVarSampOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +aggregate variance on columns +""" +type UdHistoryVarianceFields { + amount: Float + blockNumber: Float +} + +""" +order by variance() on columns of table "ud_history" +""" +input UdHistoryVarianceOrderBy { + amount: OrderBy + blockNumber: OrderBy +} + +""" +columns and relationships of "ud_reeval" +""" +type UdReeval { + blockNumber: Int! + + """ + An object relationship + """ + event: Event + eventId: String + id: String! + membersCount: Int! + monetaryMass: numeric! + newUdAmount: Int! + timestamp: timestamptz! +} + +""" +aggregated selection of "ud_reeval" +""" +type UdReevalAggregate { + aggregate: UdReevalAggregateFields + nodes: [UdReeval!]! +} + +""" +aggregate fields of "ud_reeval" +""" +type UdReevalAggregateFields { + avg: UdReevalAvgFields + count(columns: [UdReevalSelectColumn!], distinct: Boolean): Int! + max: UdReevalMaxFields + min: UdReevalMinFields + stddev: UdReevalStddevFields + stddevPop: UdReevalStddevPopFields + stddevSamp: UdReevalStddevSampFields + sum: UdReevalSumFields + varPop: UdReevalVarPopFields + varSamp: UdReevalVarSampFields + variance: UdReevalVarianceFields +} + +""" +aggregate avg on columns +""" +type UdReevalAvgFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +Boolean expression to filter rows from the table "ud_reeval". All fields are combined with a logical 'AND'. +""" +input UdReevalBoolExp { + _and: [UdReevalBoolExp!] + _not: UdReevalBoolExp + _or: [UdReevalBoolExp!] + blockNumber: IntComparisonExp + event: EventBoolExp + eventId: StringComparisonExp + id: StringComparisonExp + membersCount: IntComparisonExp + monetaryMass: NumericComparisonExp + newUdAmount: IntComparisonExp + timestamp: TimestamptzComparisonExp +} + +""" +aggregate max on columns +""" +type UdReevalMaxFields { + blockNumber: Int + eventId: String + id: String + membersCount: Int + monetaryMass: numeric + newUdAmount: Int + timestamp: timestamptz +} + +""" +aggregate min on columns +""" +type UdReevalMinFields { + blockNumber: Int + eventId: String + id: String + membersCount: Int + monetaryMass: numeric + newUdAmount: Int + timestamp: timestamptz +} + +""" +Ordering options when selecting data from "ud_reeval". +""" +input UdReevalOrderBy { + blockNumber: OrderBy + event: EventOrderBy + eventId: OrderBy + id: OrderBy + membersCount: OrderBy + monetaryMass: OrderBy + newUdAmount: OrderBy + timestamp: OrderBy +} + +""" +select columns of table "ud_reeval" +""" +enum UdReevalSelectColumn { + """ + column name + """ + blockNumber + + """ + column name + """ + eventId + + """ + column name + """ + id + + """ + column name + """ + membersCount + + """ + column name + """ + monetaryMass + + """ + column name + """ + newUdAmount + + """ + column name + """ + timestamp +} + +""" +aggregate stddev on columns +""" +type UdReevalStddevFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +aggregate stddevPop on columns +""" +type UdReevalStddevPopFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +aggregate stddevSamp on columns +""" +type UdReevalStddevSampFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +Streaming cursor of the table "ud_reeval" +""" +input UdReevalStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: UdReevalStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input UdReevalStreamCursorValueInput { + blockNumber: Int + eventId: String + id: String + membersCount: Int + monetaryMass: numeric + newUdAmount: Int + timestamp: timestamptz +} + +""" +aggregate sum on columns +""" +type UdReevalSumFields { + blockNumber: Int + membersCount: Int + monetaryMass: numeric + newUdAmount: Int +} + +""" +aggregate varPop on columns +""" +type UdReevalVarPopFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +aggregate varSamp on columns +""" +type UdReevalVarSampFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +aggregate variance on columns +""" +type UdReevalVarianceFields { + blockNumber: Float + membersCount: Float + monetaryMass: Float + newUdAmount: Float +} + +""" +columns and relationships of "universal_dividend" +""" +type UniversalDividend { + amount: Int! + blockNumber: Int! + + """ + An object relationship + """ + event: Event + eventId: String + id: String! + membersCount: Int! + monetaryMass: numeric! + timestamp: timestamptz! +} + +""" +aggregated selection of "universal_dividend" +""" +type UniversalDividendAggregate { + aggregate: UniversalDividendAggregateFields + nodes: [UniversalDividend!]! +} + +""" +aggregate fields of "universal_dividend" +""" +type UniversalDividendAggregateFields { + avg: UniversalDividendAvgFields + count(columns: [UniversalDividendSelectColumn!], distinct: Boolean): Int! + max: UniversalDividendMaxFields + min: UniversalDividendMinFields + stddev: UniversalDividendStddevFields + stddevPop: UniversalDividendStddevPopFields + stddevSamp: UniversalDividendStddevSampFields + sum: UniversalDividendSumFields + varPop: UniversalDividendVarPopFields + varSamp: UniversalDividendVarSampFields + variance: UniversalDividendVarianceFields +} + +""" +aggregate avg on columns +""" +type UniversalDividendAvgFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +""" +Boolean expression to filter rows from the table "universal_dividend". All fields are combined with a logical 'AND'. +""" +input UniversalDividendBoolExp { + _and: [UniversalDividendBoolExp!] + _not: UniversalDividendBoolExp + _or: [UniversalDividendBoolExp!] + amount: IntComparisonExp + blockNumber: IntComparisonExp + event: EventBoolExp + eventId: StringComparisonExp + id: StringComparisonExp + membersCount: IntComparisonExp + monetaryMass: NumericComparisonExp + timestamp: TimestamptzComparisonExp +} + +""" +aggregate max on columns +""" +type UniversalDividendMaxFields { + amount: Int + blockNumber: Int + eventId: String + id: String + membersCount: Int + monetaryMass: numeric + timestamp: timestamptz +} + +""" +aggregate min on columns +""" +type UniversalDividendMinFields { + amount: Int + blockNumber: Int + eventId: String + id: String + membersCount: Int + monetaryMass: numeric + timestamp: timestamptz +} + +""" +Ordering options when selecting data from "universal_dividend". +""" +input UniversalDividendOrderBy { + amount: OrderBy + blockNumber: OrderBy + event: EventOrderBy + eventId: OrderBy + id: OrderBy + membersCount: OrderBy + monetaryMass: OrderBy + timestamp: OrderBy +} + +""" +select columns of table "universal_dividend" +""" +enum UniversalDividendSelectColumn { + """ + column name + """ + amount + + """ + column name + """ + blockNumber + + """ + column name + """ + eventId + + """ + column name + """ + id + + """ + column name + """ + membersCount + + """ + column name + """ + monetaryMass + + """ + column name + """ + timestamp +} + +""" +aggregate stddev on columns +""" +type UniversalDividendStddevFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +""" +aggregate stddevPop on columns +""" +type UniversalDividendStddevPopFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +""" +aggregate stddevSamp on columns +""" +type UniversalDividendStddevSampFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +""" +Streaming cursor of the table "universal_dividend" +""" +input UniversalDividendStreamCursorInput { + """ + Stream column input with initial value + """ + initialValue: UniversalDividendStreamCursorValueInput! + + """ + cursor ordering + """ + ordering: CursorOrdering +} + +""" +Initial value of the column from where the streaming should start +""" +input UniversalDividendStreamCursorValueInput { + amount: Int + blockNumber: Int + eventId: String + id: String + membersCount: Int + monetaryMass: numeric + timestamp: timestamptz +} + +""" +aggregate sum on columns +""" +type UniversalDividendSumFields { + amount: Int + blockNumber: Int + membersCount: Int + monetaryMass: numeric +} + +""" +aggregate varPop on columns +""" +type UniversalDividendVarPopFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +""" +aggregate varSamp on columns +""" +type UniversalDividendVarSampFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +""" +aggregate variance on columns +""" +type UniversalDividendVarianceFields { + amount: Float + blockNumber: Float + membersCount: Float + monetaryMass: Float +} + +input accountAggregateBoolExpCount { + arguments: [AccountSelectColumn!] + distinct: Boolean + filter: AccountBoolExp + predicate: IntComparisonExp! +} + +scalar bytea + +input callAggregateBoolExpBool_and { + arguments: CallSelectColumnCallAggregateBoolExpBool_andArgumentsColumns! + distinct: Boolean + filter: CallBoolExp + predicate: BooleanComparisonExp! +} + +input callAggregateBoolExpBool_or { + arguments: CallSelectColumnCallAggregateBoolExpBool_orArgumentsColumns! + distinct: Boolean + filter: CallBoolExp + predicate: BooleanComparisonExp! +} + +input callAggregateBoolExpCount { + arguments: [CallSelectColumn!] + distinct: Boolean + filter: CallBoolExp + predicate: IntComparisonExp! +} + +input certAggregateBoolExpBool_and { + arguments: CertSelectColumnCertAggregateBoolExpBool_andArgumentsColumns! + distinct: Boolean + filter: CertBoolExp + predicate: BooleanComparisonExp! +} + +input certAggregateBoolExpBool_or { + arguments: CertSelectColumnCertAggregateBoolExpBool_orArgumentsColumns! + distinct: Boolean + filter: CertBoolExp + predicate: BooleanComparisonExp! +} + +input certAggregateBoolExpCount { + arguments: [CertSelectColumn!] + distinct: Boolean + filter: CertBoolExp + predicate: IntComparisonExp! +} + +input certEventAggregateBoolExpCount { + arguments: [CertEventSelectColumn!] + distinct: Boolean + filter: CertEventBoolExp + predicate: IntComparisonExp! +} + +input changeOwnerKeyAggregateBoolExpCount { + arguments: [ChangeOwnerKeySelectColumn!] + distinct: Boolean + filter: ChangeOwnerKeyBoolExp + predicate: IntComparisonExp! +} + +input eventAggregateBoolExpCount { + arguments: [EventSelectColumn!] + distinct: Boolean + filter: EventBoolExp + predicate: IntComparisonExp! +} + +input extrinsicAggregateBoolExpBool_and { + arguments: ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_andArgumentsColumns! + distinct: Boolean + filter: ExtrinsicBoolExp + predicate: BooleanComparisonExp! +} + +input extrinsicAggregateBoolExpBool_or { + arguments: ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_orArgumentsColumns! + distinct: Boolean + filter: ExtrinsicBoolExp + predicate: BooleanComparisonExp! +} + +input extrinsicAggregateBoolExpCount { + arguments: [ExtrinsicSelectColumn!] + distinct: Boolean + filter: ExtrinsicBoolExp + predicate: IntComparisonExp! +} + +input getUdHistoryArgs { + identity_row: identity_scalar +} + +scalar identity_scalar + +scalar jsonb + +input membershipEventAggregateBoolExpCount { + arguments: [MembershipEventSelectColumn!] + distinct: Boolean + filter: MembershipEventBoolExp + predicate: IntComparisonExp! +} + +scalar numeric + +type query_root { + """ + fetch data from the table: "account" + """ + account( + """ + distinct select on columns + """ + distinctOn: [AccountSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [AccountOrderBy!] + + """ + filter the rows returned + """ + where: AccountBoolExp + ): [Account!]! + + """ + fetch aggregated fields from the table: "account" + """ + accountAggregate( + """ + distinct select on columns + """ + distinctOn: [AccountSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [AccountOrderBy!] + + """ + filter the rows returned + """ + where: AccountBoolExp + ): AccountAggregate! + + """ + fetch data from the table: "account" using primary key columns + """ + accountByPk(id: String!): Account + + """ + fetch data from the table: "block" + """ + block( + """ + distinct select on columns + """ + distinctOn: [BlockSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [BlockOrderBy!] + + """ + filter the rows returned + """ + where: BlockBoolExp + ): [Block!]! + + """ + fetch aggregated fields from the table: "block" + """ + blockAggregate( + """ + distinct select on columns + """ + distinctOn: [BlockSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [BlockOrderBy!] + + """ + filter the rows returned + """ + where: BlockBoolExp + ): BlockAggregate! + + """ + fetch data from the table: "block" using primary key columns + """ + blockByPk(id: String!): Block + + """ + fetch data from the table: "call" + """ + call( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): [Call!]! + + """ + fetch aggregated fields from the table: "call" + """ + callAggregate( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): CallAggregate! + + """ + fetch data from the table: "call" using primary key columns + """ + callByPk(id: String!): Call + + """ + fetch data from the table: "cert" + """ + cert( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): [Cert!]! + + """ + fetch aggregated fields from the table: "cert" + """ + certAggregate( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): CertAggregate! + + """ + fetch data from the table: "cert" using primary key columns + """ + certByPk(id: String!): Cert + + """ + fetch data from the table: "cert_event" + """ + certEvent( + """ + distinct select on columns + """ + distinctOn: [CertEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertEventOrderBy!] + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): [CertEvent!]! + + """ + fetch aggregated fields from the table: "cert_event" + """ + certEventAggregate( + """ + distinct select on columns + """ + distinctOn: [CertEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertEventOrderBy!] + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): CertEventAggregate! + + """ + fetch data from the table: "cert_event" using primary key columns + """ + certEventByPk(id: String!): CertEvent + + """ + fetch data from the table: "change_owner_key" + """ + changeOwnerKey( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): [ChangeOwnerKey!]! + + """ + fetch aggregated fields from the table: "change_owner_key" + """ + changeOwnerKeyAggregate( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): ChangeOwnerKeyAggregate! + + """ + fetch data from the table: "change_owner_key" using primary key columns + """ + changeOwnerKeyByPk(id: String!): ChangeOwnerKey + + """ + fetch data from the table: "event" + """ + event( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): [Event!]! + + """ + fetch aggregated fields from the table: "event" + """ + eventAggregate( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): EventAggregate! + + """ + fetch data from the table: "event" using primary key columns + """ + eventByPk(id: String!): Event + + """ + fetch data from the table: "extrinsic" + """ + extrinsic( + """ + distinct select on columns + """ + distinctOn: [ExtrinsicSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ExtrinsicOrderBy!] + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): [Extrinsic!]! + + """ + fetch aggregated fields from the table: "extrinsic" + """ + extrinsicAggregate( + """ + distinct select on columns + """ + distinctOn: [ExtrinsicSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ExtrinsicOrderBy!] + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): ExtrinsicAggregate! + + """ + fetch data from the table: "extrinsic" using primary key columns + """ + extrinsicByPk(id: String!): Extrinsic + + """ + execute function "get_ud_history" which returns "ud_history" + """ + getUdHistory( + """ + input parameters for function "getUdHistory" + """ + args: getUdHistoryArgs! + + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): [UdHistory!]! + + """ + execute function "get_ud_history" and query aggregates on result of table type "ud_history" + """ + getUdHistoryAggregate( + """ + input parameters for function "getUdHistoryAggregate" + """ + args: getUdHistoryArgs! + + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): UdHistoryAggregate! + + """ + fetch data from the table: "identity" + """ + identity( + """ + distinct select on columns + """ + distinctOn: [IdentitySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [IdentityOrderBy!] + + """ + filter the rows returned + """ + where: IdentityBoolExp + ): [Identity!]! + + """ + fetch aggregated fields from the table: "identity" + """ + identityAggregate( + """ + distinct select on columns + """ + distinctOn: [IdentitySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [IdentityOrderBy!] + + """ + filter the rows returned + """ + where: IdentityBoolExp + ): IdentityAggregate! + + """ + fetch data from the table: "identity" using primary key columns + """ + identityByPk(id: String!): Identity + + """ + fetch data from the table: "items_counter" + """ + itemsCounter( + """ + distinct select on columns + """ + distinctOn: [ItemsCounterSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ItemsCounterOrderBy!] + + """ + filter the rows returned + """ + where: ItemsCounterBoolExp + ): [ItemsCounter!]! + + """ + fetch aggregated fields from the table: "items_counter" + """ + itemsCounterAggregate( + """ + distinct select on columns + """ + distinctOn: [ItemsCounterSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ItemsCounterOrderBy!] + + """ + filter the rows returned + """ + where: ItemsCounterBoolExp + ): ItemsCounterAggregate! + + """ + fetch data from the table: "items_counter" using primary key columns + """ + itemsCounterByPk(id: String!): ItemsCounter + + """ + fetch data from the table: "membership_event" + """ + membershipEvent( + """ + distinct select on columns + """ + distinctOn: [MembershipEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [MembershipEventOrderBy!] + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): [MembershipEvent!]! + + """ + fetch aggregated fields from the table: "membership_event" + """ + membershipEventAggregate( + """ + distinct select on columns + """ + distinctOn: [MembershipEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [MembershipEventOrderBy!] + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): MembershipEventAggregate! + + """ + fetch data from the table: "membership_event" using primary key columns + """ + membershipEventByPk(id: String!): MembershipEvent + + """ + fetch data from the table: "smith_cert" + """ + smithCert( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): [SmithCert!]! + + """ + fetch aggregated fields from the table: "smith_cert" + """ + smithCertAggregate( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): SmithCertAggregate! + + """ + fetch data from the table: "smith_cert" using primary key columns + """ + smithCertByPk(id: String!): SmithCert + + """ + fetch data from the table: "transfer" + """ + transfer( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): [Transfer!]! + + """ + fetch aggregated fields from the table: "transfer" + """ + transferAggregate( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): TransferAggregate! + + """ + fetch data from the table: "transfer" using primary key columns + """ + transferByPk(id: String!): Transfer + + """ + fetch data from the table: "ud_history" + """ + udHistory( + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): [UdHistory!]! + + """ + fetch aggregated fields from the table: "ud_history" + """ + udHistoryAggregate( + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): UdHistoryAggregate! + + """ + fetch data from the table: "ud_history" using primary key columns + """ + udHistoryByPk(id: String!): UdHistory + + """ + fetch data from the table: "ud_reeval" + """ + udReeval( + """ + distinct select on columns + """ + distinctOn: [UdReevalSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdReevalOrderBy!] + + """ + filter the rows returned + """ + where: UdReevalBoolExp + ): [UdReeval!]! + + """ + fetch aggregated fields from the table: "ud_reeval" + """ + udReevalAggregate( + """ + distinct select on columns + """ + distinctOn: [UdReevalSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdReevalOrderBy!] + + """ + filter the rows returned + """ + where: UdReevalBoolExp + ): UdReevalAggregate! + + """ + fetch data from the table: "ud_reeval" using primary key columns + """ + udReevalByPk(id: String!): UdReeval + + """ + fetch data from the table: "universal_dividend" + """ + universalDividend( + """ + distinct select on columns + """ + distinctOn: [UniversalDividendSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UniversalDividendOrderBy!] + + """ + filter the rows returned + """ + where: UniversalDividendBoolExp + ): [UniversalDividend!]! + + """ + fetch aggregated fields from the table: "universal_dividend" + """ + universalDividendAggregate( + """ + distinct select on columns + """ + distinctOn: [UniversalDividendSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UniversalDividendOrderBy!] + + """ + filter the rows returned + """ + where: UniversalDividendBoolExp + ): UniversalDividendAggregate! + + """ + fetch data from the table: "universal_dividend" using primary key columns + """ + universalDividendByPk(id: String!): UniversalDividend +} + +input smithCertAggregateBoolExpCount { + arguments: [SmithCertSelectColumn!] + distinct: Boolean + filter: SmithCertBoolExp + predicate: IntComparisonExp! +} + +type subscription_root { + """ + fetch data from the table: "account" + """ + account( + """ + distinct select on columns + """ + distinctOn: [AccountSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [AccountOrderBy!] + + """ + filter the rows returned + """ + where: AccountBoolExp + ): [Account!]! + + """ + fetch aggregated fields from the table: "account" + """ + accountAggregate( + """ + distinct select on columns + """ + distinctOn: [AccountSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [AccountOrderBy!] + + """ + filter the rows returned + """ + where: AccountBoolExp + ): AccountAggregate! + + """ + fetch data from the table: "account" using primary key columns + """ + accountByPk(id: String!): Account + + """ + fetch data from the table in a streaming manner: "account" + """ + accountStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [AccountStreamCursorInput]! + + """ + filter the rows returned + """ + where: AccountBoolExp + ): [Account!]! + + """ + fetch data from the table: "block" + """ + block( + """ + distinct select on columns + """ + distinctOn: [BlockSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Block!]! - blockById(id: String!): Block - blockByUniqueInput(where: WhereIdInput!): Block - @deprecated(reason: "Use blockById") - blocksConnection( - orderBy: [BlockOrderByInput!]! - after: String - first: Int - where: BlockWhereInput - ): BlocksConnection! - extrinsics( - where: ExtrinsicWhereInput - orderBy: [ExtrinsicOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [BlockOrderBy!] + + """ + filter the rows returned + """ + where: BlockBoolExp + ): [Block!]! + + """ + fetch aggregated fields from the table: "block" + """ + blockAggregate( + """ + distinct select on columns + """ + distinctOn: [BlockSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Extrinsic!]! - extrinsicById(id: String!): Extrinsic - extrinsicByUniqueInput(where: WhereIdInput!): Extrinsic - @deprecated(reason: "Use extrinsicById") - extrinsicsConnection( - orderBy: [ExtrinsicOrderByInput!]! - after: String - first: Int - where: ExtrinsicWhereInput - ): ExtrinsicsConnection! - calls( - where: CallWhereInput - orderBy: [CallOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [BlockOrderBy!] + + """ + filter the rows returned + """ + where: BlockBoolExp + ): BlockAggregate! + + """ + fetch data from the table: "block" using primary key columns + """ + blockByPk(id: String!): Block + + """ + fetch data from the table in a streaming manner: "block" + """ + blockStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [BlockStreamCursorInput]! + + """ + filter the rows returned + """ + where: BlockBoolExp + ): [Block!]! + + """ + fetch data from the table: "call" + """ + call( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Call!]! - callById(id: String!): Call - callByUniqueInput(where: WhereIdInput!): Call - @deprecated(reason: "Use callById") - callsConnection( - orderBy: [CallOrderByInput!]! - after: String - first: Int - where: CallWhereInput - ): CallsConnection! - events( - where: EventWhereInput - orderBy: [EventOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): [Call!]! + + """ + fetch aggregated fields from the table: "call" + """ + callAggregate( + """ + distinct select on columns + """ + distinctOn: [CallSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Event!]! - eventById(id: String!): Event - eventByUniqueInput(where: WhereIdInput!): Event - @deprecated(reason: "Use eventById") - eventsConnection( - orderBy: [EventOrderByInput!]! - after: String - first: Int - where: EventWhereInput - ): EventsConnection! - itemsCounters( - where: ItemsCounterWhereInput - orderBy: [ItemsCounterOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CallOrderBy!] + + """ + filter the rows returned + """ + where: CallBoolExp + ): CallAggregate! + + """ + fetch data from the table: "call" using primary key columns + """ + callByPk(id: String!): Call + + """ + fetch data from the table in a streaming manner: "call" + """ + callStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [CallStreamCursorInput]! + + """ + filter the rows returned + """ + where: CallBoolExp + ): [Call!]! + + """ + fetch data from the table: "cert" + """ + cert( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [ItemsCounter!]! - itemsCounterById(id: String!): ItemsCounter - itemsCounterByUniqueInput(where: WhereIdInput!): ItemsCounter - @deprecated(reason: "Use itemsCounterById") - itemsCountersConnection( - orderBy: [ItemsCounterOrderByInput!]! - after: String - first: Int - where: ItemsCounterWhereInput - ): ItemsCountersConnection! - accounts( - where: AccountWhereInput - orderBy: [AccountOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): [Cert!]! + + """ + fetch aggregated fields from the table: "cert" + """ + certAggregate( + """ + distinct select on columns + """ + distinctOn: [CertSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Account!]! - accountById(id: String!): Account - accountByUniqueInput(where: WhereIdInput!): Account - @deprecated(reason: "Use accountById") - accountsConnection( - orderBy: [AccountOrderByInput!]! - after: String - first: Int - where: AccountWhereInput - ): AccountsConnection! - transfers( - where: TransferWhereInput - orderBy: [TransferOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertOrderBy!] + + """ + filter the rows returned + """ + where: CertBoolExp + ): CertAggregate! + + """ + fetch data from the table: "cert" using primary key columns + """ + certByPk(id: String!): Cert + + """ + fetch data from the table: "cert_event" + """ + certEvent( + """ + distinct select on columns + """ + distinctOn: [CertEventSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Transfer!]! - transferById(id: String!): Transfer - transferByUniqueInput(where: WhereIdInput!): Transfer - @deprecated(reason: "Use transferById") - transfersConnection( - orderBy: [TransferOrderByInput!]! - after: String - first: Int - where: TransferWhereInput - ): TransfersConnection! - identities( - where: IdentityWhereInput - orderBy: [IdentityOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertEventOrderBy!] + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): [CertEvent!]! + + """ + fetch aggregated fields from the table: "cert_event" + """ + certEventAggregate( + """ + distinct select on columns + """ + distinctOn: [CertEventSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Identity!]! - identityById(id: String!): Identity - identityByUniqueInput(where: WhereIdInput!): Identity - @deprecated(reason: "Use identityById") - identitiesConnection( - orderBy: [IdentityOrderByInput!]! - after: String - first: Int - where: IdentityWhereInput - ): IdentitiesConnection! - changeOwnerKeys( - where: ChangeOwnerKeyWhereInput - orderBy: [ChangeOwnerKeyOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [CertEventOrderBy!] + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): CertEventAggregate! + + """ + fetch data from the table: "cert_event" using primary key columns + """ + certEventByPk(id: String!): CertEvent + + """ + fetch data from the table in a streaming manner: "cert_event" + """ + certEventStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [CertEventStreamCursorInput]! + + """ + filter the rows returned + """ + where: CertEventBoolExp + ): [CertEvent!]! + + """ + fetch data from the table in a streaming manner: "cert" + """ + certStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [CertStreamCursorInput]! + + """ + filter the rows returned + """ + where: CertBoolExp + ): [Cert!]! + + """ + fetch data from the table: "change_owner_key" + """ + changeOwnerKey( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [ChangeOwnerKey!]! - changeOwnerKeyById(id: String!): ChangeOwnerKey - changeOwnerKeyByUniqueInput(where: WhereIdInput!): ChangeOwnerKey - @deprecated(reason: "Use changeOwnerKeyById") - changeOwnerKeysConnection( - orderBy: [ChangeOwnerKeyOrderByInput!]! - after: String - first: Int - where: ChangeOwnerKeyWhereInput - ): ChangeOwnerKeysConnection! - certs( - where: CertWhereInput - orderBy: [CertOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): [ChangeOwnerKey!]! + + """ + fetch aggregated fields from the table: "change_owner_key" + """ + changeOwnerKeyAggregate( + """ + distinct select on columns + """ + distinctOn: [ChangeOwnerKeySelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Cert!]! - certById(id: String!): Cert - certByUniqueInput(where: WhereIdInput!): Cert - @deprecated(reason: "Use certById") - certsConnection( - orderBy: [CertOrderByInput!]! - after: String - first: Int - where: CertWhereInput - ): CertsConnection! - certCreations( - where: CertCreationWhereInput - orderBy: [CertCreationOrderByInput!] - offset: Int - limit: Int - ): [CertCreation!]! - certCreationById(id: String!): CertCreation - certCreationByUniqueInput(where: WhereIdInput!): CertCreation - @deprecated(reason: "Use certCreationById") - certCreationsConnection( - orderBy: [CertCreationOrderByInput!]! - after: String - first: Int - where: CertCreationWhereInput - ): CertCreationsConnection! - certRenewals( - where: CertRenewalWhereInput - orderBy: [CertRenewalOrderByInput!] - offset: Int - limit: Int - ): [CertRenewal!]! - certRenewalById(id: String!): CertRenewal - certRenewalByUniqueInput(where: WhereIdInput!): CertRenewal - @deprecated(reason: "Use certRenewalById") - certRenewalsConnection( - orderBy: [CertRenewalOrderByInput!]! - after: String - first: Int - where: CertRenewalWhereInput - ): CertRenewalsConnection! - certRemovals( - where: CertRemovalWhereInput - orderBy: [CertRemovalOrderByInput!] - offset: Int - limit: Int - ): [CertRemoval!]! - certRemovalById(id: String!): CertRemoval - certRemovalByUniqueInput(where: WhereIdInput!): CertRemoval - @deprecated(reason: "Use certRemovalById") - certRemovalsConnection( - orderBy: [CertRemovalOrderByInput!]! - after: String - first: Int - where: CertRemovalWhereInput - ): CertRemovalsConnection! - smithCerts( - where: SmithCertWhereInput - orderBy: [SmithCertOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int - limit: Int - ): [SmithCert!]! - smithCertById(id: String!): SmithCert - smithCertByUniqueInput(where: WhereIdInput!): SmithCert - @deprecated(reason: "Use smithCertById") - smithCertsConnection( - orderBy: [SmithCertOrderByInput!]! - after: String - first: Int - where: SmithCertWhereInput - ): SmithCertsConnection! - memberships( - where: MembershipWhereInput - orderBy: [MembershipOrderByInput!] - offset: Int - limit: Int - ): [Membership!]! - membershipById(id: String!): Membership - membershipByUniqueInput(where: WhereIdInput!): Membership - @deprecated(reason: "Use membershipById") - membershipsConnection( - orderBy: [MembershipOrderByInput!]! - after: String - first: Int - where: MembershipWhereInput - ): MembershipsConnection! - smithMemberships( - where: SmithMembershipWhereInput - orderBy: [SmithMembershipOrderByInput!] - offset: Int - limit: Int - ): [SmithMembership!]! - smithMembershipById(id: String!): SmithMembership - smithMembershipByUniqueInput(where: WhereIdInput!): SmithMembership - @deprecated(reason: "Use smithMembershipById") - smithMembershipsConnection( - orderBy: [SmithMembershipOrderByInput!]! - after: String - first: Int - where: SmithMembershipWhereInput - ): SmithMembershipsConnection! - squidStatus: SquidStatus -} -type Block { + """ + sort the rows by one or more columns + """ + orderBy: [ChangeOwnerKeyOrderBy!] + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): ChangeOwnerKeyAggregate! + """ - BlockHeight-blockHash - e.g. 0001812319-0001c + fetch data from the table: "change_owner_key" using primary key columns """ - id: String! - height: Int! - hash: Bytes! - parentHash: Bytes! - stateRoot: Bytes! - extrinsicsicRoot: Bytes! - specName: String! - specVersion: Int! - implName: String! - implVersion: Int! - timestamp: DateTime! - validator: Bytes - extrinsicsCount: Int! - callsCount: Int! - eventsCount: Int! - extrinsics( - where: ExtrinsicWhereInput - orderBy: [ExtrinsicOrderByInput!] - offset: Int + changeOwnerKeyByPk(id: String!): ChangeOwnerKey + + """ + fetch data from the table in a streaming manner: "change_owner_key" + """ + changeOwnerKeyStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [ChangeOwnerKeyStreamCursorInput]! + + """ + filter the rows returned + """ + where: ChangeOwnerKeyBoolExp + ): [ChangeOwnerKey!]! + + """ + fetch data from the table: "event" + """ + event( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Extrinsic!]! - calls( - where: CallWhereInput - orderBy: [CallOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): [Event!]! + + """ + fetch aggregated fields from the table: "event" + """ + eventAggregate( + """ + distinct select on columns + """ + distinctOn: [EventSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Call!]! - events( - where: EventWhereInput - orderBy: [EventOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int - limit: Int + + """ + sort the rows by one or more columns + """ + orderBy: [EventOrderBy!] + + """ + filter the rows returned + """ + where: EventBoolExp + ): EventAggregate! + + """ + fetch data from the table: "event" using primary key columns + """ + eventByPk(id: String!): Event + + """ + fetch data from the table in a streaming manner: "event" + """ + eventStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [EventStreamCursorInput]! + + """ + filter the rows returned + """ + where: EventBoolExp ): [Event!]! -} -""" -Binary data encoded as a hex string always prefixed with 0x -""" -scalar Bytes + """ + fetch data from the table: "extrinsic" + """ + extrinsic( + """ + distinct select on columns + """ + distinctOn: [ExtrinsicSelectColumn!] -""" -A date-time string in simplified extended ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ) -""" -scalar DateTime + """ + limit the number of rows returned + """ + limit: Int -type Extrinsic { - id: String! - block: Block! - call: Call! - index: Int! - version: Int! - signature: ExtrinsicSignature - tip: BigInt - fee: BigInt - success: Boolean - error: JSON - hash: Bytes! - calls( - where: CallWhereInput - orderBy: [CallOrderByInput!] + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ExtrinsicOrderBy!] + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): [Extrinsic!]! + + """ + fetch aggregated fields from the table: "extrinsic" + """ + extrinsicAggregate( + """ + distinct select on columns + """ + distinctOn: [ExtrinsicSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Call!]! - events( - where: EventWhereInput - orderBy: [EventOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ExtrinsicOrderBy!] + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): ExtrinsicAggregate! + + """ + fetch data from the table: "extrinsic" using primary key columns + """ + extrinsicByPk(id: String!): Extrinsic + + """ + fetch data from the table in a streaming manner: "extrinsic" + """ + extrinsicStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [ExtrinsicStreamCursorInput]! + + """ + filter the rows returned + """ + where: ExtrinsicBoolExp + ): [Extrinsic!]! + + """ + execute function "get_ud_history" which returns "ud_history" + """ + getUdHistory( + """ + input parameters for function "getUdHistory" + """ + args: getUdHistoryArgs! + + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Event!]! -} -type Call { - id: String! - block: Block! - extrinsic: Extrinsic - parent: Call - address: [Int!]! - success: Boolean! - error: JSON - pallet: String! - name: String! - args: JSON - argsStr: [String] - subcalls( - where: CallWhereInput - orderBy: [CallOrderByInput!] + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): [UdHistory!]! + + """ + execute function "get_ud_history" and query aggregates on result of table type "ud_history" + """ + getUdHistoryAggregate( + """ + input parameters for function "getUdHistoryAggregate" + """ + args: getUdHistoryArgs! + + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Call!]! - events( - where: EventWhereInput - orderBy: [EventOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int - limit: Int - ): [Event!]! -} -""" -A scalar that can represent any JSON value -""" -scalar JSON - -input CallWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - block_isNull: Boolean - block: BlockWhereInput - extrinsic_isNull: Boolean - extrinsic: ExtrinsicWhereInput - parent_isNull: Boolean - parent: CallWhereInput - address_isNull: Boolean - address_containsAll: [Int!] - address_containsAny: [Int!] - address_containsNone: [Int!] - success_isNull: Boolean - success_eq: Boolean - success_not_eq: Boolean - error_isNull: Boolean - error_eq: JSON - error_not_eq: JSON - error_jsonContains: JSON - error_jsonHasKey: JSON - pallet_isNull: Boolean - pallet_eq: String - pallet_not_eq: String - pallet_gt: String - pallet_gte: String - pallet_lt: String - pallet_lte: String - pallet_in: [String!] - pallet_not_in: [String!] - pallet_contains: String - pallet_not_contains: String - pallet_containsInsensitive: String - pallet_not_containsInsensitive: String - pallet_startsWith: String - pallet_not_startsWith: String - pallet_endsWith: String - pallet_not_endsWith: String - name_isNull: Boolean - name_eq: String - name_not_eq: String - name_gt: String - name_gte: String - name_lt: String - name_lte: String - name_in: [String!] - name_not_in: [String!] - name_contains: String - name_not_contains: String - name_containsInsensitive: String - name_not_containsInsensitive: String - name_startsWith: String - name_not_startsWith: String - name_endsWith: String - name_not_endsWith: String - args_isNull: Boolean - args_eq: JSON - args_not_eq: JSON - args_jsonContains: JSON - args_jsonHasKey: JSON - argsStr_isNull: Boolean - argsStr_containsAll: [String] - argsStr_containsAny: [String] - argsStr_containsNone: [String] - subcalls_every: CallWhereInput - subcalls_some: CallWhereInput - subcalls_none: CallWhereInput - events_every: EventWhereInput - events_some: EventWhereInput - events_none: EventWhereInput - AND: [CallWhereInput!] - OR: [CallWhereInput!] -} - -input BlockWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - height_isNull: Boolean - height_eq: Int - height_not_eq: Int - height_gt: Int - height_gte: Int - height_lt: Int - height_lte: Int - height_in: [Int!] - height_not_in: [Int!] - hash_isNull: Boolean - hash_eq: Bytes - hash_not_eq: Bytes - parentHash_isNull: Boolean - parentHash_eq: Bytes - parentHash_not_eq: Bytes - stateRoot_isNull: Boolean - stateRoot_eq: Bytes - stateRoot_not_eq: Bytes - extrinsicsicRoot_isNull: Boolean - extrinsicsicRoot_eq: Bytes - extrinsicsicRoot_not_eq: Bytes - specName_isNull: Boolean - specName_eq: String - specName_not_eq: String - specName_gt: String - specName_gte: String - specName_lt: String - specName_lte: String - specName_in: [String!] - specName_not_in: [String!] - specName_contains: String - specName_not_contains: String - specName_containsInsensitive: String - specName_not_containsInsensitive: String - specName_startsWith: String - specName_not_startsWith: String - specName_endsWith: String - specName_not_endsWith: String - specVersion_isNull: Boolean - specVersion_eq: Int - specVersion_not_eq: Int - specVersion_gt: Int - specVersion_gte: Int - specVersion_lt: Int - specVersion_lte: Int - specVersion_in: [Int!] - specVersion_not_in: [Int!] - implName_isNull: Boolean - implName_eq: String - implName_not_eq: String - implName_gt: String - implName_gte: String - implName_lt: String - implName_lte: String - implName_in: [String!] - implName_not_in: [String!] - implName_contains: String - implName_not_contains: String - implName_containsInsensitive: String - implName_not_containsInsensitive: String - implName_startsWith: String - implName_not_startsWith: String - implName_endsWith: String - implName_not_endsWith: String - implVersion_isNull: Boolean - implVersion_eq: Int - implVersion_not_eq: Int - implVersion_gt: Int - implVersion_gte: Int - implVersion_lt: Int - implVersion_lte: Int - implVersion_in: [Int!] - implVersion_not_in: [Int!] - timestamp_isNull: Boolean - timestamp_eq: DateTime - timestamp_not_eq: DateTime - timestamp_gt: DateTime - timestamp_gte: DateTime - timestamp_lt: DateTime - timestamp_lte: DateTime - timestamp_in: [DateTime!] - timestamp_not_in: [DateTime!] - validator_isNull: Boolean - validator_eq: Bytes - validator_not_eq: Bytes - extrinsicsCount_isNull: Boolean - extrinsicsCount_eq: Int - extrinsicsCount_not_eq: Int - extrinsicsCount_gt: Int - extrinsicsCount_gte: Int - extrinsicsCount_lt: Int - extrinsicsCount_lte: Int - extrinsicsCount_in: [Int!] - extrinsicsCount_not_in: [Int!] - callsCount_isNull: Boolean - callsCount_eq: Int - callsCount_not_eq: Int - callsCount_gt: Int - callsCount_gte: Int - callsCount_lt: Int - callsCount_lte: Int - callsCount_in: [Int!] - callsCount_not_in: [Int!] - eventsCount_isNull: Boolean - eventsCount_eq: Int - eventsCount_not_eq: Int - eventsCount_gt: Int - eventsCount_gte: Int - eventsCount_lt: Int - eventsCount_lte: Int - eventsCount_in: [Int!] - eventsCount_not_in: [Int!] - extrinsics_every: ExtrinsicWhereInput - extrinsics_some: ExtrinsicWhereInput - extrinsics_none: ExtrinsicWhereInput - calls_every: CallWhereInput - calls_some: CallWhereInput - calls_none: CallWhereInput - events_every: EventWhereInput - events_some: EventWhereInput - events_none: EventWhereInput - AND: [BlockWhereInput!] - OR: [BlockWhereInput!] -} - -input ExtrinsicWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - block_isNull: Boolean - block: BlockWhereInput - call_isNull: Boolean - call: CallWhereInput - index_isNull: Boolean - index_eq: Int - index_not_eq: Int - index_gt: Int - index_gte: Int - index_lt: Int - index_lte: Int - index_in: [Int!] - index_not_in: [Int!] - version_isNull: Boolean - version_eq: Int - version_not_eq: Int - version_gt: Int - version_gte: Int - version_lt: Int - version_lte: Int - version_in: [Int!] - version_not_in: [Int!] - signature_isNull: Boolean - signature: ExtrinsicSignatureWhereInput - tip_isNull: Boolean - tip_eq: BigInt - tip_not_eq: BigInt - tip_gt: BigInt - tip_gte: BigInt - tip_lt: BigInt - tip_lte: BigInt - tip_in: [BigInt!] - tip_not_in: [BigInt!] - fee_isNull: Boolean - fee_eq: BigInt - fee_not_eq: BigInt - fee_gt: BigInt - fee_gte: BigInt - fee_lt: BigInt - fee_lte: BigInt - fee_in: [BigInt!] - fee_not_in: [BigInt!] - success_isNull: Boolean - success_eq: Boolean - success_not_eq: Boolean - error_isNull: Boolean - error_eq: JSON - error_not_eq: JSON - error_jsonContains: JSON - error_jsonHasKey: JSON - hash_isNull: Boolean - hash_eq: Bytes - hash_not_eq: Bytes - calls_every: CallWhereInput - calls_some: CallWhereInput - calls_none: CallWhereInput - events_every: EventWhereInput - events_some: EventWhereInput - events_none: EventWhereInput - AND: [ExtrinsicWhereInput!] - OR: [ExtrinsicWhereInput!] -} - -input ExtrinsicSignatureWhereInput { - address_isNull: Boolean - address_eq: JSON - address_not_eq: JSON - address_jsonContains: JSON - address_jsonHasKey: JSON - signature_isNull: Boolean - signature_eq: JSON - signature_not_eq: JSON - signature_jsonContains: JSON - signature_jsonHasKey: JSON - signedExtensions_isNull: Boolean - signedExtensions_eq: JSON - signedExtensions_not_eq: JSON - signedExtensions_jsonContains: JSON - signedExtensions_jsonHasKey: JSON -} - -""" -Big number integer -""" -scalar BigInt - -input EventWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - block_isNull: Boolean - block: BlockWhereInput - extrinsic_isNull: Boolean - extrinsic: ExtrinsicWhereInput - call_isNull: Boolean - call: CallWhereInput - index_isNull: Boolean - index_eq: Int - index_not_eq: Int - index_gt: Int - index_gte: Int - index_lt: Int - index_lte: Int - index_in: [Int!] - index_not_in: [Int!] - phase_isNull: Boolean - phase_eq: String - phase_not_eq: String - phase_gt: String - phase_gte: String - phase_lt: String - phase_lte: String - phase_in: [String!] - phase_not_in: [String!] - phase_contains: String - phase_not_contains: String - phase_containsInsensitive: String - phase_not_containsInsensitive: String - phase_startsWith: String - phase_not_startsWith: String - phase_endsWith: String - phase_not_endsWith: String - pallet_isNull: Boolean - pallet_eq: String - pallet_not_eq: String - pallet_gt: String - pallet_gte: String - pallet_lt: String - pallet_lte: String - pallet_in: [String!] - pallet_not_in: [String!] - pallet_contains: String - pallet_not_contains: String - pallet_containsInsensitive: String - pallet_not_containsInsensitive: String - pallet_startsWith: String - pallet_not_startsWith: String - pallet_endsWith: String - pallet_not_endsWith: String - name_isNull: Boolean - name_eq: String - name_not_eq: String - name_gt: String - name_gte: String - name_lt: String - name_lte: String - name_in: [String!] - name_not_in: [String!] - name_contains: String - name_not_contains: String - name_containsInsensitive: String - name_not_containsInsensitive: String - name_startsWith: String - name_not_startsWith: String - name_endsWith: String - name_not_endsWith: String - args_isNull: Boolean - args_eq: JSON - args_not_eq: JSON - args_jsonContains: JSON - args_jsonHasKey: JSON - argsStr_isNull: Boolean - argsStr_containsAll: [String] - argsStr_containsAny: [String] - argsStr_containsNone: [String] - AND: [EventWhereInput!] - OR: [EventWhereInput!] -} - -enum CallOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - block_id_ASC - block_id_DESC - block_id_ASC_NULLS_FIRST - block_id_DESC_NULLS_LAST - block_height_ASC - block_height_DESC - block_height_ASC_NULLS_FIRST - block_height_DESC_NULLS_LAST - block_hash_ASC - block_hash_DESC - block_hash_ASC_NULLS_FIRST - block_hash_DESC_NULLS_LAST - block_parentHash_ASC - block_parentHash_DESC - block_parentHash_ASC_NULLS_FIRST - block_parentHash_DESC_NULLS_LAST - block_stateRoot_ASC - block_stateRoot_DESC - block_stateRoot_ASC_NULLS_FIRST - block_stateRoot_DESC_NULLS_LAST - block_extrinsicsicRoot_ASC - block_extrinsicsicRoot_DESC - block_extrinsicsicRoot_ASC_NULLS_FIRST - block_extrinsicsicRoot_DESC_NULLS_LAST - block_specName_ASC - block_specName_DESC - block_specName_ASC_NULLS_FIRST - block_specName_DESC_NULLS_LAST - block_specVersion_ASC - block_specVersion_DESC - block_specVersion_ASC_NULLS_FIRST - block_specVersion_DESC_NULLS_LAST - block_implName_ASC - block_implName_DESC - block_implName_ASC_NULLS_FIRST - block_implName_DESC_NULLS_LAST - block_implVersion_ASC - block_implVersion_DESC - block_implVersion_ASC_NULLS_FIRST - block_implVersion_DESC_NULLS_LAST - block_timestamp_ASC - block_timestamp_DESC - block_timestamp_ASC_NULLS_FIRST - block_timestamp_DESC_NULLS_LAST - block_validator_ASC - block_validator_DESC - block_validator_ASC_NULLS_FIRST - block_validator_DESC_NULLS_LAST - block_extrinsicsCount_ASC - block_extrinsicsCount_DESC - block_extrinsicsCount_ASC_NULLS_FIRST - block_extrinsicsCount_DESC_NULLS_LAST - block_callsCount_ASC - block_callsCount_DESC - block_callsCount_ASC_NULLS_FIRST - block_callsCount_DESC_NULLS_LAST - block_eventsCount_ASC - block_eventsCount_DESC - block_eventsCount_ASC_NULLS_FIRST - block_eventsCount_DESC_NULLS_LAST - extrinsic_id_ASC - extrinsic_id_DESC - extrinsic_id_ASC_NULLS_FIRST - extrinsic_id_DESC_NULLS_LAST - extrinsic_index_ASC - extrinsic_index_DESC - extrinsic_index_ASC_NULLS_FIRST - extrinsic_index_DESC_NULLS_LAST - extrinsic_version_ASC - extrinsic_version_DESC - extrinsic_version_ASC_NULLS_FIRST - extrinsic_version_DESC_NULLS_LAST - extrinsic_tip_ASC - extrinsic_tip_DESC - extrinsic_tip_ASC_NULLS_FIRST - extrinsic_tip_DESC_NULLS_LAST - extrinsic_fee_ASC - extrinsic_fee_DESC - extrinsic_fee_ASC_NULLS_FIRST - extrinsic_fee_DESC_NULLS_LAST - extrinsic_success_ASC - extrinsic_success_DESC - extrinsic_success_ASC_NULLS_FIRST - extrinsic_success_DESC_NULLS_LAST - extrinsic_hash_ASC - extrinsic_hash_DESC - extrinsic_hash_ASC_NULLS_FIRST - extrinsic_hash_DESC_NULLS_LAST - parent_id_ASC - parent_id_DESC - parent_id_ASC_NULLS_FIRST - parent_id_DESC_NULLS_LAST - parent_success_ASC - parent_success_DESC - parent_success_ASC_NULLS_FIRST - parent_success_DESC_NULLS_LAST - parent_pallet_ASC - parent_pallet_DESC - parent_pallet_ASC_NULLS_FIRST - parent_pallet_DESC_NULLS_LAST - parent_name_ASC - parent_name_DESC - parent_name_ASC_NULLS_FIRST - parent_name_DESC_NULLS_LAST - success_ASC - success_DESC - success_ASC_NULLS_FIRST - success_DESC_NULLS_LAST - pallet_ASC - pallet_DESC - pallet_ASC_NULLS_FIRST - pallet_DESC_NULLS_LAST - name_ASC - name_DESC - name_ASC_NULLS_FIRST - name_DESC_NULLS_LAST -} + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): UdHistoryAggregate! -type Event { """ - Event id - e.g. 0000000001-000000-272d6 + fetch data from the table: "identity" """ - id: String! - block: Block! - extrinsic: Extrinsic - call: Call - index: Int! - phase: String! - pallet: String! - name: String! - args: JSON - argsStr: [String] -} - -enum EventOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - block_id_ASC - block_id_DESC - block_id_ASC_NULLS_FIRST - block_id_DESC_NULLS_LAST - block_height_ASC - block_height_DESC - block_height_ASC_NULLS_FIRST - block_height_DESC_NULLS_LAST - block_hash_ASC - block_hash_DESC - block_hash_ASC_NULLS_FIRST - block_hash_DESC_NULLS_LAST - block_parentHash_ASC - block_parentHash_DESC - block_parentHash_ASC_NULLS_FIRST - block_parentHash_DESC_NULLS_LAST - block_stateRoot_ASC - block_stateRoot_DESC - block_stateRoot_ASC_NULLS_FIRST - block_stateRoot_DESC_NULLS_LAST - block_extrinsicsicRoot_ASC - block_extrinsicsicRoot_DESC - block_extrinsicsicRoot_ASC_NULLS_FIRST - block_extrinsicsicRoot_DESC_NULLS_LAST - block_specName_ASC - block_specName_DESC - block_specName_ASC_NULLS_FIRST - block_specName_DESC_NULLS_LAST - block_specVersion_ASC - block_specVersion_DESC - block_specVersion_ASC_NULLS_FIRST - block_specVersion_DESC_NULLS_LAST - block_implName_ASC - block_implName_DESC - block_implName_ASC_NULLS_FIRST - block_implName_DESC_NULLS_LAST - block_implVersion_ASC - block_implVersion_DESC - block_implVersion_ASC_NULLS_FIRST - block_implVersion_DESC_NULLS_LAST - block_timestamp_ASC - block_timestamp_DESC - block_timestamp_ASC_NULLS_FIRST - block_timestamp_DESC_NULLS_LAST - block_validator_ASC - block_validator_DESC - block_validator_ASC_NULLS_FIRST - block_validator_DESC_NULLS_LAST - block_extrinsicsCount_ASC - block_extrinsicsCount_DESC - block_extrinsicsCount_ASC_NULLS_FIRST - block_extrinsicsCount_DESC_NULLS_LAST - block_callsCount_ASC - block_callsCount_DESC - block_callsCount_ASC_NULLS_FIRST - block_callsCount_DESC_NULLS_LAST - block_eventsCount_ASC - block_eventsCount_DESC - block_eventsCount_ASC_NULLS_FIRST - block_eventsCount_DESC_NULLS_LAST - extrinsic_id_ASC - extrinsic_id_DESC - extrinsic_id_ASC_NULLS_FIRST - extrinsic_id_DESC_NULLS_LAST - extrinsic_index_ASC - extrinsic_index_DESC - extrinsic_index_ASC_NULLS_FIRST - extrinsic_index_DESC_NULLS_LAST - extrinsic_version_ASC - extrinsic_version_DESC - extrinsic_version_ASC_NULLS_FIRST - extrinsic_version_DESC_NULLS_LAST - extrinsic_tip_ASC - extrinsic_tip_DESC - extrinsic_tip_ASC_NULLS_FIRST - extrinsic_tip_DESC_NULLS_LAST - extrinsic_fee_ASC - extrinsic_fee_DESC - extrinsic_fee_ASC_NULLS_FIRST - extrinsic_fee_DESC_NULLS_LAST - extrinsic_success_ASC - extrinsic_success_DESC - extrinsic_success_ASC_NULLS_FIRST - extrinsic_success_DESC_NULLS_LAST - extrinsic_hash_ASC - extrinsic_hash_DESC - extrinsic_hash_ASC_NULLS_FIRST - extrinsic_hash_DESC_NULLS_LAST - call_id_ASC - call_id_DESC - call_id_ASC_NULLS_FIRST - call_id_DESC_NULLS_LAST - call_success_ASC - call_success_DESC - call_success_ASC_NULLS_FIRST - call_success_DESC_NULLS_LAST - call_pallet_ASC - call_pallet_DESC - call_pallet_ASC_NULLS_FIRST - call_pallet_DESC_NULLS_LAST - call_name_ASC - call_name_DESC - call_name_ASC_NULLS_FIRST - call_name_DESC_NULLS_LAST - index_ASC - index_DESC - index_ASC_NULLS_FIRST - index_DESC_NULLS_LAST - phase_ASC - phase_DESC - phase_ASC_NULLS_FIRST - phase_DESC_NULLS_LAST - pallet_ASC - pallet_DESC - pallet_ASC_NULLS_FIRST - pallet_DESC_NULLS_LAST - name_ASC - name_DESC - name_ASC_NULLS_FIRST - name_DESC_NULLS_LAST -} - -type ExtrinsicSignature { - address: JSON - signature: JSON - signedExtensions: JSON -} - -enum ExtrinsicOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - block_id_ASC - block_id_DESC - block_id_ASC_NULLS_FIRST - block_id_DESC_NULLS_LAST - block_height_ASC - block_height_DESC - block_height_ASC_NULLS_FIRST - block_height_DESC_NULLS_LAST - block_hash_ASC - block_hash_DESC - block_hash_ASC_NULLS_FIRST - block_hash_DESC_NULLS_LAST - block_parentHash_ASC - block_parentHash_DESC - block_parentHash_ASC_NULLS_FIRST - block_parentHash_DESC_NULLS_LAST - block_stateRoot_ASC - block_stateRoot_DESC - block_stateRoot_ASC_NULLS_FIRST - block_stateRoot_DESC_NULLS_LAST - block_extrinsicsicRoot_ASC - block_extrinsicsicRoot_DESC - block_extrinsicsicRoot_ASC_NULLS_FIRST - block_extrinsicsicRoot_DESC_NULLS_LAST - block_specName_ASC - block_specName_DESC - block_specName_ASC_NULLS_FIRST - block_specName_DESC_NULLS_LAST - block_specVersion_ASC - block_specVersion_DESC - block_specVersion_ASC_NULLS_FIRST - block_specVersion_DESC_NULLS_LAST - block_implName_ASC - block_implName_DESC - block_implName_ASC_NULLS_FIRST - block_implName_DESC_NULLS_LAST - block_implVersion_ASC - block_implVersion_DESC - block_implVersion_ASC_NULLS_FIRST - block_implVersion_DESC_NULLS_LAST - block_timestamp_ASC - block_timestamp_DESC - block_timestamp_ASC_NULLS_FIRST - block_timestamp_DESC_NULLS_LAST - block_validator_ASC - block_validator_DESC - block_validator_ASC_NULLS_FIRST - block_validator_DESC_NULLS_LAST - block_extrinsicsCount_ASC - block_extrinsicsCount_DESC - block_extrinsicsCount_ASC_NULLS_FIRST - block_extrinsicsCount_DESC_NULLS_LAST - block_callsCount_ASC - block_callsCount_DESC - block_callsCount_ASC_NULLS_FIRST - block_callsCount_DESC_NULLS_LAST - block_eventsCount_ASC - block_eventsCount_DESC - block_eventsCount_ASC_NULLS_FIRST - block_eventsCount_DESC_NULLS_LAST - call_id_ASC - call_id_DESC - call_id_ASC_NULLS_FIRST - call_id_DESC_NULLS_LAST - call_success_ASC - call_success_DESC - call_success_ASC_NULLS_FIRST - call_success_DESC_NULLS_LAST - call_pallet_ASC - call_pallet_DESC - call_pallet_ASC_NULLS_FIRST - call_pallet_DESC_NULLS_LAST - call_name_ASC - call_name_DESC - call_name_ASC_NULLS_FIRST - call_name_DESC_NULLS_LAST - index_ASC - index_DESC - index_ASC_NULLS_FIRST - index_DESC_NULLS_LAST - version_ASC - version_DESC - version_ASC_NULLS_FIRST - version_DESC_NULLS_LAST - tip_ASC - tip_DESC - tip_ASC_NULLS_FIRST - tip_DESC_NULLS_LAST - fee_ASC - fee_DESC - fee_ASC_NULLS_FIRST - fee_DESC_NULLS_LAST - success_ASC - success_DESC - success_ASC_NULLS_FIRST - success_DESC_NULLS_LAST - hash_ASC - hash_DESC - hash_ASC_NULLS_FIRST - hash_DESC_NULLS_LAST -} - -enum BlockOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - height_ASC - height_DESC - height_ASC_NULLS_FIRST - height_DESC_NULLS_LAST - hash_ASC - hash_DESC - hash_ASC_NULLS_FIRST - hash_DESC_NULLS_LAST - parentHash_ASC - parentHash_DESC - parentHash_ASC_NULLS_FIRST - parentHash_DESC_NULLS_LAST - stateRoot_ASC - stateRoot_DESC - stateRoot_ASC_NULLS_FIRST - stateRoot_DESC_NULLS_LAST - extrinsicsicRoot_ASC - extrinsicsicRoot_DESC - extrinsicsicRoot_ASC_NULLS_FIRST - extrinsicsicRoot_DESC_NULLS_LAST - specName_ASC - specName_DESC - specName_ASC_NULLS_FIRST - specName_DESC_NULLS_LAST - specVersion_ASC - specVersion_DESC - specVersion_ASC_NULLS_FIRST - specVersion_DESC_NULLS_LAST - implName_ASC - implName_DESC - implName_ASC_NULLS_FIRST - implName_DESC_NULLS_LAST - implVersion_ASC - implVersion_DESC - implVersion_ASC_NULLS_FIRST - implVersion_DESC_NULLS_LAST - timestamp_ASC - timestamp_DESC - timestamp_ASC_NULLS_FIRST - timestamp_DESC_NULLS_LAST - validator_ASC - validator_DESC - validator_ASC_NULLS_FIRST - validator_DESC_NULLS_LAST - extrinsicsCount_ASC - extrinsicsCount_DESC - extrinsicsCount_ASC_NULLS_FIRST - extrinsicsCount_DESC_NULLS_LAST - callsCount_ASC - callsCount_DESC - callsCount_ASC_NULLS_FIRST - callsCount_DESC_NULLS_LAST - eventsCount_ASC - eventsCount_DESC - eventsCount_ASC_NULLS_FIRST - eventsCount_DESC_NULLS_LAST -} - -input WhereIdInput { - id: String! -} + identity( + """ + distinct select on columns + """ + distinctOn: [IdentitySelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [IdentityOrderBy!] + + """ + filter the rows returned + """ + where: IdentityBoolExp + ): [Identity!]! + + """ + fetch aggregated fields from the table: "identity" + """ + identityAggregate( + """ + distinct select on columns + """ + distinctOn: [IdentitySelectColumn!] -type BlocksConnection { - edges: [BlockEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} + """ + limit the number of rows returned + """ + limit: Int -type BlockEdge { - node: Block! - cursor: String! -} + """ + skip the first n rows. Use only with order_by + """ + offset: Int -type PageInfo { - hasNextPage: Boolean! - hasPreviousPage: Boolean! - startCursor: String! - endCursor: String! -} + """ + sort the rows by one or more columns + """ + orderBy: [IdentityOrderBy!] -type ExtrinsicsConnection { - edges: [ExtrinsicEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} + """ + filter the rows returned + """ + where: IdentityBoolExp + ): IdentityAggregate! -type ExtrinsicEdge { - node: Extrinsic! - cursor: String! -} + """ + fetch data from the table: "identity" using primary key columns + """ + identityByPk(id: String!): Identity -type CallsConnection { - edges: [CallEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} + """ + fetch data from the table in a streaming manner: "identity" + """ + identityStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! -type CallEdge { - node: Call! - cursor: String! -} + """ + cursor to stream the results returned by the query + """ + cursor: [IdentityStreamCursorInput]! -type EventsConnection { - edges: [EventEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} + """ + filter the rows returned + """ + where: IdentityBoolExp + ): [Identity!]! -type EventEdge { - node: Event! - cursor: String! -} + """ + fetch data from the table: "items_counter" + """ + itemsCounter( + """ + distinct select on columns + """ + distinctOn: [ItemsCounterSelectColumn!] -type ItemsCounter { - id: String! - type: ItemType! - level: CounterLevel! - total: Int! -} + """ + limit the number of rows returned + """ + limit: Int -enum ItemType { - Extrinsics - Calls - Events -} - -enum CounterLevel { - Global - Pallet - Item -} - -input ItemsCounterWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - type_isNull: Boolean - type_eq: ItemType - type_not_eq: ItemType - type_in: [ItemType!] - type_not_in: [ItemType!] - level_isNull: Boolean - level_eq: CounterLevel - level_not_eq: CounterLevel - level_in: [CounterLevel!] - level_not_in: [CounterLevel!] - total_isNull: Boolean - total_eq: Int - total_not_eq: Int - total_gt: Int - total_gte: Int - total_lt: Int - total_lte: Int - total_in: [Int!] - total_not_in: [Int!] - AND: [ItemsCounterWhereInput!] - OR: [ItemsCounterWhereInput!] -} - -enum ItemsCounterOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - type_ASC - type_DESC - type_ASC_NULLS_FIRST - type_DESC_NULLS_LAST - level_ASC - level_DESC - level_ASC_NULLS_FIRST - level_DESC_NULLS_LAST - total_ASC - total_DESC - total_ASC_NULLS_FIRST - total_DESC_NULLS_LAST -} - -type ItemsCountersConnection { - edges: [ItemsCounterEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type ItemsCounterEdge { - node: ItemsCounter! - cursor: String! -} + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [ItemsCounterOrderBy!] + + """ + filter the rows returned + """ + where: ItemsCounterBoolExp + ): [ItemsCounter!]! -type Account { """ - Account address is SS58 format + fetch aggregated fields from the table: "items_counter" """ - id: String! - transfersIssued( - where: TransferWhereInput - orderBy: [TransferOrderByInput!] - offset: Int + itemsCounterAggregate( + """ + distinct select on columns + """ + distinctOn: [ItemsCounterSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Transfer!]! - transfersReceived( - where: TransferWhereInput - orderBy: [TransferOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int - limit: Int - ): [Transfer!]! + + """ + sort the rows by one or more columns + """ + orderBy: [ItemsCounterOrderBy!] + + """ + filter the rows returned + """ + where: ItemsCounterBoolExp + ): ItemsCounterAggregate! """ - current account for the identity + fetch data from the table: "items_counter" using primary key columns """ - identity: Identity + itemsCounterByPk(id: String!): ItemsCounter """ - was once account of the identity + fetch data from the table in a streaming manner: "items_counter" """ - wasIdentity( - where: ChangeOwnerKeyWhereInput - orderBy: [ChangeOwnerKeyOrderByInput!] - offset: Int - limit: Int - ): [ChangeOwnerKey!]! + itemsCounterStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [ItemsCounterStreamCursorInput]! + + """ + filter the rows returned + """ + where: ItemsCounterBoolExp + ): [ItemsCounter!]! """ - linked to the identity + fetch data from the table: "membership_event" """ - linkedIdentity: Identity -} + membershipEvent( + """ + distinct select on columns + """ + distinctOn: [MembershipEventSelectColumn!] -type Transfer { - id: String! - blockNumber: Int! - timestamp: DateTime! - from: Account! - to: Account! - amount: BigInt! - comment: String -} + """ + limit the number of rows returned + """ + limit: Int -input TransferWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - blockNumber_isNull: Boolean - blockNumber_eq: Int - blockNumber_not_eq: Int - blockNumber_gt: Int - blockNumber_gte: Int - blockNumber_lt: Int - blockNumber_lte: Int - blockNumber_in: [Int!] - blockNumber_not_in: [Int!] - timestamp_isNull: Boolean - timestamp_eq: DateTime - timestamp_not_eq: DateTime - timestamp_gt: DateTime - timestamp_gte: DateTime - timestamp_lt: DateTime - timestamp_lte: DateTime - timestamp_in: [DateTime!] - timestamp_not_in: [DateTime!] - from_isNull: Boolean - from: AccountWhereInput - to_isNull: Boolean - to: AccountWhereInput - amount_isNull: Boolean - amount_eq: BigInt - amount_not_eq: BigInt - amount_gt: BigInt - amount_gte: BigInt - amount_lt: BigInt - amount_lte: BigInt - amount_in: [BigInt!] - amount_not_in: [BigInt!] - comment_isNull: Boolean - comment_eq: String - comment_not_eq: String - comment_gt: String - comment_gte: String - comment_lt: String - comment_lte: String - comment_in: [String!] - comment_not_in: [String!] - comment_contains: String - comment_not_contains: String - comment_containsInsensitive: String - comment_not_containsInsensitive: String - comment_startsWith: String - comment_not_startsWith: String - comment_endsWith: String - comment_not_endsWith: String - AND: [TransferWhereInput!] - OR: [TransferWhereInput!] -} - -input AccountWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - transfersIssued_every: TransferWhereInput - transfersIssued_some: TransferWhereInput - transfersIssued_none: TransferWhereInput - transfersReceived_every: TransferWhereInput - transfersReceived_some: TransferWhereInput - transfersReceived_none: TransferWhereInput - identity_isNull: Boolean - identity: IdentityWhereInput - wasIdentity_every: ChangeOwnerKeyWhereInput - wasIdentity_some: ChangeOwnerKeyWhereInput - wasIdentity_none: ChangeOwnerKeyWhereInput - linkedIdentity_isNull: Boolean - linkedIdentity: IdentityWhereInput - AND: [AccountWhereInput!] - OR: [AccountWhereInput!] -} - -input IdentityWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - index_isNull: Boolean - index_eq: Int - index_not_eq: Int - index_gt: Int - index_gte: Int - index_lt: Int - index_lte: Int - index_in: [Int!] - index_not_in: [Int!] - account_isNull: Boolean - account: AccountWhereInput - name_isNull: Boolean - name_eq: String - name_not_eq: String - name_gt: String - name_gte: String - name_lt: String - name_lte: String - name_in: [String!] - name_not_in: [String!] - name_contains: String - name_not_contains: String - name_containsInsensitive: String - name_not_containsInsensitive: String - name_startsWith: String - name_not_startsWith: String - name_endsWith: String - name_not_endsWith: String - status_isNull: Boolean - status_eq: IdentityStatus - status_not_eq: IdentityStatus - status_in: [IdentityStatus!] - status_not_in: [IdentityStatus!] - certIssued_every: CertWhereInput - certIssued_some: CertWhereInput - certIssued_none: CertWhereInput - certReceived_every: CertWhereInput - certReceived_some: CertWhereInput - certReceived_none: CertWhereInput - smithCertIssued_every: SmithCertWhereInput - smithCertIssued_some: SmithCertWhereInput - smithCertIssued_none: SmithCertWhereInput - smithCertReceived_every: SmithCertWhereInput - smithCertReceived_some: SmithCertWhereInput - smithCertReceived_none: SmithCertWhereInput - membership_isNull: Boolean - membership: MembershipWhereInput - smithMembership_isNull: Boolean - smithMembership: SmithMembershipWhereInput - ownerKeyChange_every: ChangeOwnerKeyWhereInput - ownerKeyChange_some: ChangeOwnerKeyWhereInput - ownerKeyChange_none: ChangeOwnerKeyWhereInput - linkedAccount_every: AccountWhereInput - linkedAccount_some: AccountWhereInput - linkedAccount_none: AccountWhereInput - AND: [IdentityWhereInput!] - OR: [IdentityWhereInput!] -} - -enum IdentityStatus { - Unconfirmed - Unvalidated - Member - NotMember - Revoked - Removed -} - -input CertWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - issuer_isNull: Boolean - issuer: IdentityWhereInput - receiver_isNull: Boolean - receiver: IdentityWhereInput - active_isNull: Boolean - active_eq: Boolean - active_not_eq: Boolean - createdOn_isNull: Boolean - createdOn_eq: Int - createdOn_not_eq: Int - createdOn_gt: Int - createdOn_gte: Int - createdOn_lt: Int - createdOn_lte: Int - createdOn_in: [Int!] - createdOn_not_in: [Int!] - expireOn_isNull: Boolean - expireOn_eq: Int - expireOn_not_eq: Int - expireOn_gt: Int - expireOn_gte: Int - expireOn_lt: Int - expireOn_lte: Int - expireOn_in: [Int!] - expireOn_not_in: [Int!] - creation_every: CertCreationWhereInput - creation_some: CertCreationWhereInput - creation_none: CertCreationWhereInput - renewal_every: CertRenewalWhereInput - renewal_some: CertRenewalWhereInput - renewal_none: CertRenewalWhereInput - removal_every: CertRemovalWhereInput - removal_some: CertRemovalWhereInput - removal_none: CertRemovalWhereInput - AND: [CertWhereInput!] - OR: [CertWhereInput!] -} - -input CertCreationWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - cert_isNull: Boolean - cert: CertWhereInput - blockNumber_isNull: Boolean - blockNumber_eq: Int - blockNumber_not_eq: Int - blockNumber_gt: Int - blockNumber_gte: Int - blockNumber_lt: Int - blockNumber_lte: Int - blockNumber_in: [Int!] - blockNumber_not_in: [Int!] - AND: [CertCreationWhereInput!] - OR: [CertCreationWhereInput!] -} - -input CertRenewalWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - cert_isNull: Boolean - cert: CertWhereInput - blockNumber_isNull: Boolean - blockNumber_eq: Int - blockNumber_not_eq: Int - blockNumber_gt: Int - blockNumber_gte: Int - blockNumber_lt: Int - blockNumber_lte: Int - blockNumber_in: [Int!] - blockNumber_not_in: [Int!] - AND: [CertRenewalWhereInput!] - OR: [CertRenewalWhereInput!] -} - -input CertRemovalWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - cert_isNull: Boolean - cert: CertWhereInput - blockNumber_isNull: Boolean - blockNumber_eq: Int - blockNumber_not_eq: Int - blockNumber_gt: Int - blockNumber_gte: Int - blockNumber_lt: Int - blockNumber_lte: Int - blockNumber_in: [Int!] - blockNumber_not_in: [Int!] - AND: [CertRemovalWhereInput!] - OR: [CertRemovalWhereInput!] -} - -input SmithCertWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - issuer_isNull: Boolean - issuer: IdentityWhereInput - receiver_isNull: Boolean - receiver: IdentityWhereInput - createdOn_isNull: Boolean - createdOn_eq: Int - createdOn_not_eq: Int - createdOn_gt: Int - createdOn_gte: Int - createdOn_lt: Int - createdOn_lte: Int - createdOn_in: [Int!] - createdOn_not_in: [Int!] - AND: [SmithCertWhereInput!] - OR: [SmithCertWhereInput!] -} - -input MembershipWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - identity_isNull: Boolean - identity: IdentityWhereInput - expireOn_isNull: Boolean - expireOn_eq: Int - expireOn_not_eq: Int - expireOn_gt: Int - expireOn_gte: Int - expireOn_lt: Int - expireOn_lte: Int - expireOn_in: [Int!] - expireOn_not_in: [Int!] - AND: [MembershipWhereInput!] - OR: [MembershipWhereInput!] -} - -input SmithMembershipWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - identity_isNull: Boolean - identity: IdentityWhereInput - expireOn_isNull: Boolean - expireOn_eq: Int - expireOn_not_eq: Int - expireOn_gt: Int - expireOn_gte: Int - expireOn_lt: Int - expireOn_lte: Int - expireOn_in: [Int!] - expireOn_not_in: [Int!] - status_isNull: Boolean - status_eq: SmithStatus - status_not_eq: SmithStatus - status_in: [SmithStatus!] - status_not_in: [SmithStatus!] - AND: [SmithMembershipWhereInput!] - OR: [SmithMembershipWhereInput!] -} - -enum SmithStatus { - Invited - Pending - Smith - Excluded -} - -input ChangeOwnerKeyWhereInput { - id_isNull: Boolean - id_eq: String - id_not_eq: String - id_gt: String - id_gte: String - id_lt: String - id_lte: String - id_in: [String!] - id_not_in: [String!] - id_contains: String - id_not_contains: String - id_containsInsensitive: String - id_not_containsInsensitive: String - id_startsWith: String - id_not_startsWith: String - id_endsWith: String - id_not_endsWith: String - identity_isNull: Boolean - identity: IdentityWhereInput - previous_isNull: Boolean - previous: AccountWhereInput - next_isNull: Boolean - next: AccountWhereInput - blockNumber_isNull: Boolean - blockNumber_eq: Int - blockNumber_not_eq: Int - blockNumber_gt: Int - blockNumber_gte: Int - blockNumber_lt: Int - blockNumber_lte: Int - blockNumber_in: [Int!] - blockNumber_not_in: [Int!] - AND: [ChangeOwnerKeyWhereInput!] - OR: [ChangeOwnerKeyWhereInput!] -} - -enum TransferOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - blockNumber_ASC - blockNumber_DESC - blockNumber_ASC_NULLS_FIRST - blockNumber_DESC_NULLS_LAST - timestamp_ASC - timestamp_DESC - timestamp_ASC_NULLS_FIRST - timestamp_DESC_NULLS_LAST - from_id_ASC - from_id_DESC - from_id_ASC_NULLS_FIRST - from_id_DESC_NULLS_LAST - to_id_ASC - to_id_DESC - to_id_ASC_NULLS_FIRST - to_id_DESC_NULLS_LAST - amount_ASC - amount_DESC - amount_ASC_NULLS_FIRST - amount_DESC_NULLS_LAST - comment_ASC - comment_DESC - comment_ASC_NULLS_FIRST - comment_DESC_NULLS_LAST -} - -""" -Identity -""" -type Identity { - id: String! + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [MembershipEventOrderBy!] + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): [MembershipEvent!]! """ - Identity index + fetch aggregated fields from the table: "membership_event" """ - index: Int! + membershipEventAggregate( + """ + distinct select on columns + """ + distinctOn: [MembershipEventSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [MembershipEventOrderBy!] + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): MembershipEventAggregate! """ - Current account + fetch data from the table: "membership_event" using primary key columns """ - account: Account! + membershipEventByPk(id: String!): MembershipEvent """ - Name + fetch data from the table in a streaming manner: "membership_event" """ - name: String! + membershipEventStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [MembershipEventStreamCursorInput]! + + """ + filter the rows returned + """ + where: MembershipEventBoolExp + ): [MembershipEvent!]! """ - Status + fetch data from the table: "smith_cert" """ - status: IdentityStatus! + smithCert( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): [SmithCert!]! """ - Certifications issued + fetch aggregated fields from the table: "smith_cert" """ - certIssued( - where: CertWhereInput - orderBy: [CertOrderByInput!] - offset: Int + smithCertAggregate( + """ + distinct select on columns + """ + distinctOn: [SmithCertSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Cert!]! + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [SmithCertOrderBy!] + + """ + filter the rows returned + """ + where: SmithCertBoolExp + ): SmithCertAggregate! """ - Certifications received + fetch data from the table: "smith_cert" using primary key columns """ - certReceived( - where: CertWhereInput - orderBy: [CertOrderByInput!] - offset: Int - limit: Int - ): [Cert!]! + smithCertByPk(id: String!): SmithCert """ - Smith certifications issued + fetch data from the table in a streaming manner: "smith_cert" """ - smithCertIssued( - where: SmithCertWhereInput - orderBy: [SmithCertOrderByInput!] - offset: Int - limit: Int + smithCertStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [SmithCertStreamCursorInput]! + + """ + filter the rows returned + """ + where: SmithCertBoolExp ): [SmithCert!]! """ - Smith certifications received + fetch data from the table: "transfer" """ - smithCertReceived( - where: SmithCertWhereInput - orderBy: [SmithCertOrderByInput!] + transfer( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ + limit: Int + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): [Transfer!]! + + """ + fetch aggregated fields from the table: "transfer" + """ + transferAggregate( + """ + distinct select on columns + """ + distinctOn: [TransferSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [SmithCert!]! + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [TransferOrderBy!] + + """ + filter the rows returned + """ + where: TransferBoolExp + ): TransferAggregate! """ - Membership of the identity + fetch data from the table: "transfer" using primary key columns """ - membership: Membership + transferByPk(id: String!): Transfer """ - Smith Membership of the identity + fetch data from the table in a streaming manner: "transfer" """ - smithMembership: SmithMembership + transferStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [TransferStreamCursorInput]! + + """ + filter the rows returned + """ + where: TransferBoolExp + ): [Transfer!]! """ - Owner key changes + fetch data from the table: "ud_history" """ - ownerKeyChange( - where: ChangeOwnerKeyWhereInput - orderBy: [ChangeOwnerKeyOrderByInput!] - offset: Int + udHistory( + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [ChangeOwnerKey!]! + + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): [UdHistory!]! """ - linked accounts + fetch aggregated fields from the table: "ud_history" """ - linkedAccount( - where: AccountWhereInput - orderBy: [AccountOrderByInput!] - offset: Int + udHistoryAggregate( + """ + distinct select on columns + """ + distinctOn: [UdHistorySelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Account!]! -} -""" -Certification -""" -type Cert { - id: String! - issuer: Identity! - receiver: Identity! + """ + skip the first n rows. Use only with order_by + """ + offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UdHistoryOrderBy!] + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): UdHistoryAggregate! """ - whether the certification is currently active or not + fetch data from the table: "ud_history" using primary key columns """ - active: Boolean! + udHistoryByPk(id: String!): UdHistory """ - the last createdOn value + fetch data from the table in a streaming manner: "ud_history" """ - createdOn: Int! + udHistoryStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [UdHistoryStreamCursorInput]! + + """ + filter the rows returned + """ + where: UdHistoryBoolExp + ): [UdHistory!]! """ - the current expireOn value + fetch data from the table: "ud_reeval" """ - expireOn: Int! - creation( - where: CertCreationWhereInput - orderBy: [CertCreationOrderByInput!] - offset: Int - limit: Int - ): [CertCreation!]! - renewal( - where: CertRenewalWhereInput - orderBy: [CertRenewalOrderByInput!] - offset: Int + udReeval( + """ + distinct select on columns + """ + distinctOn: [UdReevalSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [CertRenewal!]! - removal( - where: CertRemovalWhereInput - orderBy: [CertRemovalOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int - limit: Int - ): [CertRemoval!]! -} -""" -Certification creation -""" -type CertCreation { - id: String! - cert: Cert! - blockNumber: Int! -} + """ + sort the rows by one or more columns + """ + orderBy: [UdReevalOrderBy!] -enum CertCreationOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - cert_id_ASC - cert_id_DESC - cert_id_ASC_NULLS_FIRST - cert_id_DESC_NULLS_LAST - cert_active_ASC - cert_active_DESC - cert_active_ASC_NULLS_FIRST - cert_active_DESC_NULLS_LAST - cert_createdOn_ASC - cert_createdOn_DESC - cert_createdOn_ASC_NULLS_FIRST - cert_createdOn_DESC_NULLS_LAST - cert_expireOn_ASC - cert_expireOn_DESC - cert_expireOn_ASC_NULLS_FIRST - cert_expireOn_DESC_NULLS_LAST - blockNumber_ASC - blockNumber_DESC - blockNumber_ASC_NULLS_FIRST - blockNumber_DESC_NULLS_LAST -} - -""" -Certification renewal -""" -type CertRenewal { - id: String! - cert: Cert! - blockNumber: Int! -} + """ + filter the rows returned + """ + where: UdReevalBoolExp + ): [UdReeval!]! -enum CertRenewalOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - cert_id_ASC - cert_id_DESC - cert_id_ASC_NULLS_FIRST - cert_id_DESC_NULLS_LAST - cert_active_ASC - cert_active_DESC - cert_active_ASC_NULLS_FIRST - cert_active_DESC_NULLS_LAST - cert_createdOn_ASC - cert_createdOn_DESC - cert_createdOn_ASC_NULLS_FIRST - cert_createdOn_DESC_NULLS_LAST - cert_expireOn_ASC - cert_expireOn_DESC - cert_expireOn_ASC_NULLS_FIRST - cert_expireOn_DESC_NULLS_LAST - blockNumber_ASC - blockNumber_DESC - blockNumber_ASC_NULLS_FIRST - blockNumber_DESC_NULLS_LAST -} - -""" -Certification removal -""" -type CertRemoval { - id: String! - cert: Cert! - blockNumber: Int! -} + """ + fetch aggregated fields from the table: "ud_reeval" + """ + udReevalAggregate( + """ + distinct select on columns + """ + distinctOn: [UdReevalSelectColumn!] -enum CertRemovalOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - cert_id_ASC - cert_id_DESC - cert_id_ASC_NULLS_FIRST - cert_id_DESC_NULLS_LAST - cert_active_ASC - cert_active_DESC - cert_active_ASC_NULLS_FIRST - cert_active_DESC_NULLS_LAST - cert_createdOn_ASC - cert_createdOn_DESC - cert_createdOn_ASC_NULLS_FIRST - cert_createdOn_DESC_NULLS_LAST - cert_expireOn_ASC - cert_expireOn_DESC - cert_expireOn_ASC_NULLS_FIRST - cert_expireOn_DESC_NULLS_LAST - blockNumber_ASC - blockNumber_DESC - blockNumber_ASC_NULLS_FIRST - blockNumber_DESC_NULLS_LAST -} - -enum CertOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - issuer_id_ASC - issuer_id_DESC - issuer_id_ASC_NULLS_FIRST - issuer_id_DESC_NULLS_LAST - issuer_index_ASC - issuer_index_DESC - issuer_index_ASC_NULLS_FIRST - issuer_index_DESC_NULLS_LAST - issuer_name_ASC - issuer_name_DESC - issuer_name_ASC_NULLS_FIRST - issuer_name_DESC_NULLS_LAST - issuer_status_ASC - issuer_status_DESC - issuer_status_ASC_NULLS_FIRST - issuer_status_DESC_NULLS_LAST - receiver_id_ASC - receiver_id_DESC - receiver_id_ASC_NULLS_FIRST - receiver_id_DESC_NULLS_LAST - receiver_index_ASC - receiver_index_DESC - receiver_index_ASC_NULLS_FIRST - receiver_index_DESC_NULLS_LAST - receiver_name_ASC - receiver_name_DESC - receiver_name_ASC_NULLS_FIRST - receiver_name_DESC_NULLS_LAST - receiver_status_ASC - receiver_status_DESC - receiver_status_ASC_NULLS_FIRST - receiver_status_DESC_NULLS_LAST - active_ASC - active_DESC - active_ASC_NULLS_FIRST - active_DESC_NULLS_LAST - createdOn_ASC - createdOn_DESC - createdOn_ASC_NULLS_FIRST - createdOn_DESC_NULLS_LAST - expireOn_ASC - expireOn_DESC - expireOn_ASC_NULLS_FIRST - expireOn_DESC_NULLS_LAST -} - -""" -Smith certification -""" -type SmithCert { - id: String! - issuer: Identity! - receiver: Identity! - createdOn: Int! -} + """ + limit the number of rows returned + """ + limit: Int -enum SmithCertOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - issuer_id_ASC - issuer_id_DESC - issuer_id_ASC_NULLS_FIRST - issuer_id_DESC_NULLS_LAST - issuer_index_ASC - issuer_index_DESC - issuer_index_ASC_NULLS_FIRST - issuer_index_DESC_NULLS_LAST - issuer_name_ASC - issuer_name_DESC - issuer_name_ASC_NULLS_FIRST - issuer_name_DESC_NULLS_LAST - issuer_status_ASC - issuer_status_DESC - issuer_status_ASC_NULLS_FIRST - issuer_status_DESC_NULLS_LAST - receiver_id_ASC - receiver_id_DESC - receiver_id_ASC_NULLS_FIRST - receiver_id_DESC_NULLS_LAST - receiver_index_ASC - receiver_index_DESC - receiver_index_ASC_NULLS_FIRST - receiver_index_DESC_NULLS_LAST - receiver_name_ASC - receiver_name_DESC - receiver_name_ASC_NULLS_FIRST - receiver_name_DESC_NULLS_LAST - receiver_status_ASC - receiver_status_DESC - receiver_status_ASC_NULLS_FIRST - receiver_status_DESC_NULLS_LAST - createdOn_ASC - createdOn_DESC - createdOn_ASC_NULLS_FIRST - createdOn_DESC_NULLS_LAST -} - -""" -Membership -""" -type Membership { - id: String! - identity: Identity! - expireOn: Int! -} + """ + skip the first n rows. Use only with order_by + """ + offset: Int -""" -Smith membership -""" -type SmithMembership { - id: String! - identity: Identity! - expireOn: Int! - status: SmithStatus! -} + """ + sort the rows by one or more columns + """ + orderBy: [UdReevalOrderBy!] -""" -owner key change -""" -type ChangeOwnerKey { - id: String! - identity: Identity! - previous: Account! - next: Account! - blockNumber: Int! -} + """ + filter the rows returned + """ + where: UdReevalBoolExp + ): UdReevalAggregate! -enum ChangeOwnerKeyOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - identity_id_ASC - identity_id_DESC - identity_id_ASC_NULLS_FIRST - identity_id_DESC_NULLS_LAST - identity_index_ASC - identity_index_DESC - identity_index_ASC_NULLS_FIRST - identity_index_DESC_NULLS_LAST - identity_name_ASC - identity_name_DESC - identity_name_ASC_NULLS_FIRST - identity_name_DESC_NULLS_LAST - identity_status_ASC - identity_status_DESC - identity_status_ASC_NULLS_FIRST - identity_status_DESC_NULLS_LAST - previous_id_ASC - previous_id_DESC - previous_id_ASC_NULLS_FIRST - previous_id_DESC_NULLS_LAST - next_id_ASC - next_id_DESC - next_id_ASC_NULLS_FIRST - next_id_DESC_NULLS_LAST - blockNumber_ASC - blockNumber_DESC - blockNumber_ASC_NULLS_FIRST - blockNumber_DESC_NULLS_LAST -} - -enum AccountOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - identity_id_ASC - identity_id_DESC - identity_id_ASC_NULLS_FIRST - identity_id_DESC_NULLS_LAST - identity_index_ASC - identity_index_DESC - identity_index_ASC_NULLS_FIRST - identity_index_DESC_NULLS_LAST - identity_name_ASC - identity_name_DESC - identity_name_ASC_NULLS_FIRST - identity_name_DESC_NULLS_LAST - identity_status_ASC - identity_status_DESC - identity_status_ASC_NULLS_FIRST - identity_status_DESC_NULLS_LAST - linkedIdentity_id_ASC - linkedIdentity_id_DESC - linkedIdentity_id_ASC_NULLS_FIRST - linkedIdentity_id_DESC_NULLS_LAST - linkedIdentity_index_ASC - linkedIdentity_index_DESC - linkedIdentity_index_ASC_NULLS_FIRST - linkedIdentity_index_DESC_NULLS_LAST - linkedIdentity_name_ASC - linkedIdentity_name_DESC - linkedIdentity_name_ASC_NULLS_FIRST - linkedIdentity_name_DESC_NULLS_LAST - linkedIdentity_status_ASC - linkedIdentity_status_DESC - linkedIdentity_status_ASC_NULLS_FIRST - linkedIdentity_status_DESC_NULLS_LAST -} - -type AccountsConnection { - edges: [AccountEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type AccountEdge { - node: Account! - cursor: String! -} - -type TransfersConnection { - edges: [TransferEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type TransferEdge { - node: Transfer! - cursor: String! -} - -enum IdentityOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - index_ASC - index_DESC - index_ASC_NULLS_FIRST - index_DESC_NULLS_LAST - account_id_ASC - account_id_DESC - account_id_ASC_NULLS_FIRST - account_id_DESC_NULLS_LAST - name_ASC - name_DESC - name_ASC_NULLS_FIRST - name_DESC_NULLS_LAST - status_ASC - status_DESC - status_ASC_NULLS_FIRST - status_DESC_NULLS_LAST - membership_id_ASC - membership_id_DESC - membership_id_ASC_NULLS_FIRST - membership_id_DESC_NULLS_LAST - membership_expireOn_ASC - membership_expireOn_DESC - membership_expireOn_ASC_NULLS_FIRST - membership_expireOn_DESC_NULLS_LAST - smithMembership_id_ASC - smithMembership_id_DESC - smithMembership_id_ASC_NULLS_FIRST - smithMembership_id_DESC_NULLS_LAST - smithMembership_expireOn_ASC - smithMembership_expireOn_DESC - smithMembership_expireOn_ASC_NULLS_FIRST - smithMembership_expireOn_DESC_NULLS_LAST - smithMembership_status_ASC - smithMembership_status_DESC - smithMembership_status_ASC_NULLS_FIRST - smithMembership_status_DESC_NULLS_LAST -} - -type IdentitiesConnection { - edges: [IdentityEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type IdentityEdge { - node: Identity! - cursor: String! -} - -type ChangeOwnerKeysConnection { - edges: [ChangeOwnerKeyEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type ChangeOwnerKeyEdge { - node: ChangeOwnerKey! - cursor: String! -} - -type CertsConnection { - edges: [CertEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type CertEdge { - node: Cert! - cursor: String! -} - -type CertCreationsConnection { - edges: [CertCreationEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type CertCreationEdge { - node: CertCreation! - cursor: String! -} - -type CertRenewalsConnection { - edges: [CertRenewalEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type CertRenewalEdge { - node: CertRenewal! - cursor: String! -} - -type CertRemovalsConnection { - edges: [CertRemovalEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type CertRemovalEdge { - node: CertRemoval! - cursor: String! -} - -type SmithCertsConnection { - edges: [SmithCertEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type SmithCertEdge { - node: SmithCert! - cursor: String! -} - -enum MembershipOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - identity_id_ASC - identity_id_DESC - identity_id_ASC_NULLS_FIRST - identity_id_DESC_NULLS_LAST - identity_index_ASC - identity_index_DESC - identity_index_ASC_NULLS_FIRST - identity_index_DESC_NULLS_LAST - identity_name_ASC - identity_name_DESC - identity_name_ASC_NULLS_FIRST - identity_name_DESC_NULLS_LAST - identity_status_ASC - identity_status_DESC - identity_status_ASC_NULLS_FIRST - identity_status_DESC_NULLS_LAST - expireOn_ASC - expireOn_DESC - expireOn_ASC_NULLS_FIRST - expireOn_DESC_NULLS_LAST -} + """ + fetch data from the table: "ud_reeval" using primary key columns + """ + udReevalByPk(id: String!): UdReeval -type MembershipsConnection { - edges: [MembershipEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} + """ + fetch data from the table in a streaming manner: "ud_reeval" + """ + udReevalStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! -type MembershipEdge { - node: Membership! - cursor: String! -} + """ + cursor to stream the results returned by the query + """ + cursor: [UdReevalStreamCursorInput]! -enum SmithMembershipOrderByInput { - id_ASC - id_DESC - id_ASC_NULLS_FIRST - id_DESC_NULLS_LAST - identity_id_ASC - identity_id_DESC - identity_id_ASC_NULLS_FIRST - identity_id_DESC_NULLS_LAST - identity_index_ASC - identity_index_DESC - identity_index_ASC_NULLS_FIRST - identity_index_DESC_NULLS_LAST - identity_name_ASC - identity_name_DESC - identity_name_ASC_NULLS_FIRST - identity_name_DESC_NULLS_LAST - identity_status_ASC - identity_status_DESC - identity_status_ASC_NULLS_FIRST - identity_status_DESC_NULLS_LAST - expireOn_ASC - expireOn_DESC - expireOn_ASC_NULLS_FIRST - expireOn_DESC_NULLS_LAST - status_ASC - status_DESC - status_ASC_NULLS_FIRST - status_DESC_NULLS_LAST -} - -type SmithMembershipsConnection { - edges: [SmithMembershipEdge!]! - pageInfo: PageInfo! - totalCount: Int! -} - -type SmithMembershipEdge { - node: SmithMembership! - cursor: String! -} - -type Subscription { - blocks( - where: BlockWhereInput - orderBy: [BlockOrderByInput!] - offset: Int - limit: Int - ): [Block!]! - blockById(id: String!): Block - extrinsics( - where: ExtrinsicWhereInput - orderBy: [ExtrinsicOrderByInput!] - offset: Int - limit: Int - ): [Extrinsic!]! - extrinsicById(id: String!): Extrinsic - calls( - where: CallWhereInput - orderBy: [CallOrderByInput!] - offset: Int - limit: Int - ): [Call!]! - callById(id: String!): Call - events( - where: EventWhereInput - orderBy: [EventOrderByInput!] - offset: Int - limit: Int - ): [Event!]! - eventById(id: String!): Event - itemsCounters( - where: ItemsCounterWhereInput - orderBy: [ItemsCounterOrderByInput!] - offset: Int - limit: Int - ): [ItemsCounter!]! - itemsCounterById(id: String!): ItemsCounter - accounts( - where: AccountWhereInput - orderBy: [AccountOrderByInput!] - offset: Int - limit: Int - ): [Account!]! - accountById(id: String!): Account - transfers( - where: TransferWhereInput - orderBy: [TransferOrderByInput!] - offset: Int - limit: Int - ): [Transfer!]! - transferById(id: String!): Transfer - identities( - where: IdentityWhereInput - orderBy: [IdentityOrderByInput!] - offset: Int - limit: Int - ): [Identity!]! - identityById(id: String!): Identity - changeOwnerKeys( - where: ChangeOwnerKeyWhereInput - orderBy: [ChangeOwnerKeyOrderByInput!] - offset: Int - limit: Int - ): [ChangeOwnerKey!]! - changeOwnerKeyById(id: String!): ChangeOwnerKey - certs( - where: CertWhereInput - orderBy: [CertOrderByInput!] - offset: Int - limit: Int - ): [Cert!]! - certById(id: String!): Cert - certCreations( - where: CertCreationWhereInput - orderBy: [CertCreationOrderByInput!] - offset: Int - limit: Int - ): [CertCreation!]! - certCreationById(id: String!): CertCreation - certRenewals( - where: CertRenewalWhereInput - orderBy: [CertRenewalOrderByInput!] - offset: Int - limit: Int - ): [CertRenewal!]! - certRenewalById(id: String!): CertRenewal - certRemovals( - where: CertRemovalWhereInput - orderBy: [CertRemovalOrderByInput!] - offset: Int - limit: Int - ): [CertRemoval!]! - certRemovalById(id: String!): CertRemoval - smithCerts( - where: SmithCertWhereInput - orderBy: [SmithCertOrderByInput!] - offset: Int + """ + filter the rows returned + """ + where: UdReevalBoolExp + ): [UdReeval!]! + + """ + fetch data from the table: "universal_dividend" + """ + universalDividend( + """ + distinct select on columns + """ + distinctOn: [UniversalDividendSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [SmithCert!]! - smithCertById(id: String!): SmithCert - memberships( - where: MembershipWhereInput - orderBy: [MembershipOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int + + """ + sort the rows by one or more columns + """ + orderBy: [UniversalDividendOrderBy!] + + """ + filter the rows returned + """ + where: UniversalDividendBoolExp + ): [UniversalDividend!]! + + """ + fetch aggregated fields from the table: "universal_dividend" + """ + universalDividendAggregate( + """ + distinct select on columns + """ + distinctOn: [UniversalDividendSelectColumn!] + + """ + limit the number of rows returned + """ limit: Int - ): [Membership!]! - membershipById(id: String!): Membership - smithMemberships( - where: SmithMembershipWhereInput - orderBy: [SmithMembershipOrderByInput!] + + """ + skip the first n rows. Use only with order_by + """ offset: Int - limit: Int - ): [SmithMembership!]! - smithMembershipById(id: String!): SmithMembership -} -type SquidStatus { + """ + sort the rows by one or more columns + """ + orderBy: [UniversalDividendOrderBy!] + + """ + filter the rows returned + """ + where: UniversalDividendBoolExp + ): UniversalDividendAggregate! + """ - The height of the processed part of the chain + fetch data from the table: "universal_dividend" using primary key columns """ - height: Int -} \ No newline at end of file + universalDividendByPk(id: String!): UniversalDividend + + """ + fetch data from the table in a streaming manner: "universal_dividend" + """ + universalDividendStream( + """ + maximum number of rows returned in a single batch + """ + batchSize: Int! + + """ + cursor to stream the results returned by the query + """ + cursor: [UniversalDividendStreamCursorInput]! + + """ + filter the rows returned + """ + where: UniversalDividendBoolExp + ): [UniversalDividend!]! +} + +scalar timestamptz + +input transferAggregateBoolExpCount { + arguments: [TransferSelectColumn!] + distinct: Boolean + filter: TransferBoolExp + predicate: IntComparisonExp! +} diff --git a/res/indexer-schema.json b/res/indexer-schema.json index 705f627..b2f73a1 100644 --- a/res/indexer-schema.json +++ b/res/indexer-schema.json @@ -6,7 +6,7 @@ "args": [ { "defaultValue": null, - "description": "Included when true.", + "description": null, "name": "if", "type": { "kind": "NON_NULL", @@ -19,7 +19,7 @@ } } ], - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "description": "whether this query should be included", "locations": [ "FIELD", "FRAGMENT_SPREAD", @@ -31,7 +31,7 @@ "args": [ { "defaultValue": null, - "description": "Skipped when true.", + "description": null, "name": "if", "type": { "kind": "NON_NULL", @@ -44,7 +44,7 @@ } } ], - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "description": "whether this query should be skipped", "locations": [ "FIELD", "FRAGMENT_SPREAD", @@ -55,77 +55,111 @@ { "args": [ { - "defaultValue": "\"No longer supported\"", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", - "name": "reason", + "defaultValue": "60", + "description": "measured in seconds", + "name": "ttl", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - } - ], - "description": "Marks an element of a GraphQL schema as no longer supported.", - "locations": [ - "FIELD_DEFINITION", - "ARGUMENT_DEFINITION", - "INPUT_FIELD_DEFINITION", - "ENUM_VALUE" - ], - "name": "deprecated" - }, - { - "args": [ + }, { - "defaultValue": null, - "description": "The URL that specifies the behaviour of this scalar.", - "name": "url", + "defaultValue": "false", + "description": "refresh the cache entry", + "name": "refresh", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } } } ], - "description": "Exposes a URL that specifies the behaviour of this scalar.", + "description": "whether this query should be cached (Hasura Cloud only)", "locations": [ - "SCALAR" + "QUERY" ], - "name": "specifiedBy" + "name": "cached" } ], "mutationType": null, "queryType": { - "name": "Query" + "name": "query_root" }, "subscriptionType": { - "name": "Subscription" + "name": "subscription_root" }, "types": [ { - "description": null, + "description": "columns and relationships of \"account\"", "enumValues": null, "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "identity", + "type": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "linkedIdentity", + "type": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "linkedIdentityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, { "args": [ { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -134,7 +168,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "BlockOrderByInput", + "name": "TransferSelectColumn", "ofType": null } } @@ -142,8 +176,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -152,129 +186,99 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "blocks", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } } } - } - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "id", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "blockById", + "name": "transfersIssued", "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "kind": "OBJECT", + "name": "Transfer", "ofType": null } } } - ], - "deprecationReason": "Use blockById", - "description": null, - "isDeprecated": true, - "name": "blockByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null } }, { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlockOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -283,25 +287,43 @@ }, { "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "name": "TransferBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "blocksConnection", + "name": "transfersIssuedAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "BlocksConnection", + "name": "TransferAggregate", "ofType": null } } @@ -310,18 +332,8 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -330,7 +342,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ExtrinsicOrderByInput", + "name": "TransferSelectColumn", "ofType": null } } @@ -338,8 +350,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -348,19 +360,47 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "extrinsics", + "name": "transfersReceived", "type": { "kind": "NON_NULL", "name": null, @@ -372,7 +412,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Extrinsic", + "name": "Transfer", "ofType": null } } @@ -383,121 +423,81 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "extrinsicById", - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use extrinsicById", - "description": null, - "isDeprecated": true, - "name": "extrinsicByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "limit the number of rows returned", + "name": "limit", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicOrderByInput", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "sort the rows by one or more columns", + "name": "orderBy", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } } }, { "defaultValue": null, - "description": null, + "description": "filter the rows returned", "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "name": "TransferBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "extrinsicsConnection", + "name": "transfersReceivedAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "ExtrinsicsConnection", + "name": "TransferAggregate", "ofType": null } } @@ -506,18 +506,8 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -526,7 +516,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CallOrderByInput", + "name": "ChangeOwnerKeySelectColumn", "ofType": null } } @@ -534,8 +524,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -544,129 +534,99 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "calls", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "ofType": null + } } } - } - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "id", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "callById", + "name": "wasIdentity", "type": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "kind": "OBJECT", + "name": "ChangeOwnerKey", "ofType": null } } } - ], - "deprecationReason": "Use callById", - "description": null, - "isDeprecated": true, - "name": "callByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "Call", - "ofType": null } }, { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -675,44 +635,7 @@ }, { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "callsConnection", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallsConnection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -721,8 +644,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", "ofType": null } } @@ -730,121 +653,124 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "events", + "name": "wasIdentityAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregate", + "ofType": null } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Account", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"account\"", + "enumValues": null, + "fields": [ { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "eventById", + "name": "aggregate", "type": { "kind": "OBJECT", - "name": "Event", + "name": "AccountAggregateFields", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "kind": "OBJECT", + "name": "Account", "ofType": null } } } - ], - "deprecationReason": "Use eventById", + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, "description": null, - "isDeprecated": true, - "name": "eventByUniqueInput", + "name": "count", "type": { - "kind": "OBJECT", - "name": "Event", + "kind": "INPUT_OBJECT", + "name": "accountAggregateBoolExpCount", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"account\"", + "enumValues": null, + "fields": [ { "args": [ { "defaultValue": null, "description": null, - "name": "orderBy", + "name": "columns", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null } } } @@ -852,30 +778,10 @@ { "defaultValue": null, "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", + "name": "distinct", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "name": "Boolean", "ofType": null } } @@ -883,770 +789,586 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "eventsConnection", + "name": "count", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "EventsConnection", + "kind": "SCALAR", + "name": "Int", "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemsCounterWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ItemsCounterOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "itemsCounters", + "name": "max", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ItemsCounter", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "AccountMaxFields", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "itemsCounterById", + "name": "min", "type": { "kind": "OBJECT", - "name": "ItemsCounter", + "name": "AccountMinFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"account\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "count", + "type": { + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } + "defaultValue": null, + "description": null, + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMaxOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountMinOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"account\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null } } - ], - "deprecationReason": "Use itemsCounterById", + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": true, - "name": "itemsCounterByUniqueInput", + "name": "_not", "type": { - "kind": "OBJECT", - "name": "ItemsCounter", + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ItemsCounterOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { + "defaultValue": null, + "description": null, + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ItemsCounterWhereInput", + "name": "AccountBoolExp", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "itemsCountersConnection", + "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ItemsCountersConnection", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "accounts", + "name": "identity", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "accountById", + "name": "linkedIdentity", "type": { - "kind": "OBJECT", - "name": "Account", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use accountById", + "defaultValue": null, "description": null, - "isDeprecated": true, - "name": "accountByUniqueInput", + "name": "linkedIdentityId", "type": { - "kind": "OBJECT", - "name": "Account", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "accountsConnection", + "name": "transfersIssued", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TransferOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "transfers", + "name": "transfersIssuedAggregate", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transfer", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "TransferAggregateBoolExp", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "transferById", + "name": "transfersReceived", "type": { - "kind": "OBJECT", - "name": "Transfer", + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use transferById", + "defaultValue": null, "description": null, - "isDeprecated": true, - "name": "transferByUniqueInput", + "name": "transfersReceivedAggregate", "type": { - "kind": "OBJECT", - "name": "Transfer", + "kind": "INPUT_OBJECT", + "name": "TransferAggregateBoolExp", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TransferOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "transfersConnection", + "name": "wasIdentity", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransfersConnection", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IdentityOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identities", + "name": "wasIdentityAggregate", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAggregateBoolExp", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identityById", + "name": "id", "type": { - "kind": "OBJECT", - "name": "Identity", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use identityById", + "args": [], + "deprecationReason": null, "description": null, - "isDeprecated": true, - "name": "identityByUniqueInput", + "isDeprecated": false, + "name": "linkedIdentityId", "type": { - "kind": "OBJECT", - "name": "Identity", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"account\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "linkedIdentityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "linkedIdentityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "AccountMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"account\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "linkedIdentityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"account\".", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "identity", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "linkedIdentity", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "linkedIdentityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "transfersIssuedAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferAggregateOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "transfersReceivedAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferAggregateOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "wasIdentityAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAggregateOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"account\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "linkedIdentityId" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "AccountSelectColumn", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"account\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStreamCursorValueInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, + { + "defaultValue": null, + "description": null, + "name": "linkedIdentityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "AccountStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"block\"", + "enumValues": null, + "fields": [ { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IdentityOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -1655,45 +1377,8 @@ }, { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identitiesConnection", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "IdentitiesConnection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "sort the rows by one or more columns", + "name": "orderBy", "type": { "kind": "LIST", "name": null, @@ -1701,8 +1386,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", "ofType": null } } @@ -1710,29 +1395,19 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "changeOwnerKeys", + "name": "calls", "type": { "kind": "NON_NULL", "name": null, @@ -1744,105 +1419,47 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "changeOwnerKeyById", - "type": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "name": "Call", "ofType": null } } } - ], - "deprecationReason": "Use changeOwnerKeyById", - "description": null, - "isDeprecated": true, - "name": "changeOwnerKeyByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null } }, { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -1851,25 +1468,59 @@ }, { "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "name": "CallBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "changeOwnerKeysConnection", + "name": "callsAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeOwnerKeysConnection", + "name": "CallAggregate", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "callsCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -1878,18 +1529,8 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -1898,7 +1539,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertOrderByInput", + "name": "EventSelectColumn", "ofType": null } } @@ -1906,8 +1547,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -1916,129 +1557,99 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "certs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } } } - } - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "id", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "certById", + "name": "events", "type": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "kind": "OBJECT", + "name": "Event", "ofType": null } } } - ], - "deprecationReason": "Use certById", - "description": null, - "isDeprecated": true, - "name": "certByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null } }, { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -2047,45 +1658,8 @@ }, { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "certsConnection", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertsConnection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "sort the rows by one or more columns", + "name": "orderBy", "type": { "kind": "LIST", "name": null, @@ -2093,8 +1667,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CertEventOrderByInput", + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", "ofType": null } } @@ -2102,139 +1676,79 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "certEvents", + "name": "eventsAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertEvent", - "ofType": null - } - } + "kind": "OBJECT", + "name": "EventAggregate", + "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certEventById", + "name": "eventsCount", "type": { - "kind": "OBJECT", - "name": "CertEvent", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], - "deprecationReason": "Use certEventById", - "description": null, - "isDeprecated": true, - "name": "certEventByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "CertEvent", - "ofType": null } }, { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertEventOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -2243,44 +1757,7 @@ }, { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "certEventsConnection", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertEventsConnection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -2289,8 +1766,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", "ofType": null } } @@ -2298,29 +1775,19 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "smithCerts", + "name": "extrinsics", "type": { "kind": "NON_NULL", "name": null, @@ -2332,105 +1799,47 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "smithCertById", - "type": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "name": "Extrinsic", "ofType": null } } } - ], - "deprecationReason": "Use smithCertById", - "description": null, - "isDeprecated": true, - "name": "smithCertByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null } }, { "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null } } } }, { "defaultValue": null, - "description": null, - "name": "after", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "first", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", @@ -2439,221 +1848,75 @@ }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "sort the rows by one or more columns", + "name": "orderBy", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", + "ofType": null + } + } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "smithCertsConnection", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCertsConnection", - "ofType": null - } - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, + "description": "filter the rows returned", "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MembershipEventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "ExtrinsicBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "membershipEvents", + "name": "extrinsicsAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ExtrinsicAggregate", + "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membershipEventById", + "name": "extrinsicsCount", "type": { - "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], - "deprecationReason": "Use membershipEventById", - "description": null, - "isDeprecated": true, - "name": "membershipEventByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MembershipEventOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membershipEventsConnection", + "name": "extrinsicsicRoot", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "MembershipEventsConnection", + "kind": "SCALAR", + "name": "bytea", "ofType": null } } @@ -2663,56 +1926,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "squidStatus", - "type": { - "kind": "OBJECT", - "name": "SquidStatus", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Query", - "possibleTypes": null - }, - { - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Int", - "possibleTypes": null - }, - { - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "String", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "BlockHeight-blockHash - e.g. 0001812319-0001c", - "isDeprecated": false, - "name": "id", + "name": "hash", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } } @@ -2738,13 +1958,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "hash", + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } } @@ -2754,13 +1974,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parentHash", + "name": "implName", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } } @@ -2770,13 +1990,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "stateRoot", + "name": "implVersion", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "Int", "ofType": null } } @@ -2786,13 +2006,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsicsicRoot", + "name": "parentHash", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Bytes", + "name": "bytea", "ofType": null } } @@ -2834,13 +2054,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implName", + "name": "stateRoot", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } } @@ -2850,13 +2070,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implVersion", + "name": "timestamp", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null } } @@ -2866,26 +2086,33 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp", + "name": "validator", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "bytea", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Block", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"block\"", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "validator", + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "OBJECT", + "name": "BlockAggregateFields", "ofType": null } }, @@ -2894,104 +2121,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsicsCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "callsCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "eventsCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "extrinsics", + "name": "nodes", "type": { "kind": "NON_NULL", "name": null, @@ -3003,84 +2133,34 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Extrinsic", + "name": "Block", "ofType": null } } } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockAggregate", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"block\"", + "enumValues": null, + "fields": [ { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "calls", + "name": "avg", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "BlockAvgFields", + "ofType": null } }, { @@ -3088,17 +2168,7 @@ { "defaultValue": null, "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "name": "columns", "type": { "kind": "LIST", "name": null, @@ -3107,7 +2177,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EventOrderByInput", + "name": "BlockSelectColumn", "ofType": null } } @@ -3116,20 +2186,10 @@ { "defaultValue": null, "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "name": "distinct", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } } @@ -3137,70 +2197,27 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "events", + "name": "count", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Block", - "possibleTypes": null - }, - { - "description": "Binary data encoded as a hex string always prefixed with 0x", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Bytes", - "possibleTypes": null - }, - { - "description": "A date-time string in simplified extended ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "DateTime", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", + "name": "max", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "BlockMaxFields", + "ofType": null } }, { @@ -3208,15 +2225,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block", + "name": "min", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "OBJECT", + "name": "BlockMinFields", + "ofType": null } }, { @@ -3224,15 +2237,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call", + "name": "stddev", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } + "kind": "OBJECT", + "name": "BlockStddevFields", + "ofType": null } }, { @@ -3240,15 +2249,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index", + "name": "stddevPop", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "BlockStddevPopFields", + "ofType": null } }, { @@ -3256,15 +2261,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "version", + "name": "stddevSamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "BlockStddevSampFields", + "ofType": null } }, { @@ -3272,10 +2273,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "signature", + "name": "sum", "type": { "kind": "OBJECT", - "name": "ExtrinsicSignature", + "name": "BlockSumFields", "ofType": null } }, @@ -3284,10 +2285,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tip", + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "BlockVarPopFields", "ofType": null } }, @@ -3296,10 +2297,45 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "fee", + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "BlockVarSampFields", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "BlockVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockAggregateFields", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Float", "ofType": null } }, @@ -3308,10 +2344,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "success", + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, @@ -3320,10 +2356,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "error", + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, @@ -3332,306 +2368,325 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "hash", + "name": "height", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "calls", + "name": "implVersion", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "events", + "name": "specVersion", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "Extrinsic", + "name": "BlockAvgFields", "possibleTypes": null }, { - "description": "The `Boolean` scalar type represents `true` or `false`.", + "description": "Boolean expression to filter rows from the table \"block\". All fields are combined with a logical 'AND'.", "enumValues": null, "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Boolean", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "_and", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block", + "name": "_not", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic", + "name": "_or", "type": { - "kind": "OBJECT", - "name": "Extrinsic", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "calls", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent", + "name": "callsAggregate", "type": { - "kind": "OBJECT", - "name": "Call", + "kind": "INPUT_OBJECT", + "name": "CallAggregateBoolExp", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "address", + "name": "callsCount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success", + "name": "events", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "error", + "name": "eventsAggregate", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "EventAggregateBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "eventsCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "extrinsics", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "extrinsicsAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicAggregateBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "extrinsicsCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "extrinsicsicRoot", + "type": { + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "implName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "implVersion", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "parentHash", + "type": { + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "specName", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "specVersion", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, + { + "defaultValue": null, + "description": null, + "name": "stateRoot", + "type": { + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimestamptzComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "validator", + "type": { + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pallet", + "name": "callsCount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { @@ -3639,15 +2694,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name", + "name": "eventsCount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { @@ -3655,10 +2706,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "args", + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Int", "ofType": null } }, @@ -3667,229 +2718,150 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "argsStr", + "name": "height", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "subcalls", + "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "events", + "name": "implName", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "implVersion", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "specName", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "specVersion", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "Call", - "possibleTypes": null - }, - { - "description": "A scalar that can represent any JSON value", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "JSON", + "name": "BlockMaxFields", "possibleTypes": null }, { - "description": null, + "description": "aggregate min on columns", "enumValues": null, - "fields": null, - "inputFields": [ + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_isNull", + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_eq", + "isDeprecated": false, + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gt", + "isDeprecated": false, + "name": "height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gte", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -3897,9 +2869,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lt", + "isDeprecated": false, + "name": "implName", "type": { "kind": "SCALAR", "name": "String", @@ -3907,555 +2881,705 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lte", + "isDeprecated": false, + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", + "isDeprecated": false, + "name": "specName", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_contains", + "isDeprecated": false, + "name": "specVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_contains", + "isDeprecated": false, + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockMinFields", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"block\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "callsAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "callsCount", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "eventsAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "eventsCount", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "extrinsicsAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "extrinsicsCount", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "block_isNull", + "name": "extrinsicsicRoot", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "block", + "name": "hash", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsic_isNull", + "name": "height", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsic", + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "parent_isNull", + "name": "implName", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "parent", + "name": "implVersion", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_isNull", + "name": "parentHash", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_containsAll", + "name": "specName", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_containsAny", + "name": "specVersion", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_containsNone", + "name": "stateRoot", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_isNull", + "name": "timestamp", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_eq", + "name": "validator", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"block\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "callsCount" }, { - "defaultValue": null, + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "eventsCount" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "extrinsicsCount" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "extrinsicsicRoot" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "hash" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "height" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "implName" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "implVersion" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "parentHash" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "specName" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "specVersion" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "stateRoot" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "timestamp" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "validator" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "BlockSelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "success_not_eq", + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "error_isNull", + "isDeprecated": false, + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "error_eq", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "error_not_eq", + "isDeprecated": false, + "name": "height", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "error_jsonContains", + "isDeprecated": false, + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "error_jsonHasKey", + "isDeprecated": false, + "name": "specVersion", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockStddevFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_isNull", + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_eq", + "isDeprecated": false, + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_not_eq", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_gt", + "isDeprecated": false, + "name": "height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_gte", + "isDeprecated": false, + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_lt", + "isDeprecated": false, + "name": "specVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockStddevPopFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_lte", + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_in", + "isDeprecated": false, + "name": "eventsCount", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_not_in", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_contains", + "isDeprecated": false, + "name": "height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_not_contains", + "isDeprecated": false, + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_containsInsensitive", + "isDeprecated": false, + "name": "specVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockStddevSampFields", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"block\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, - "description": null, - "name": "pallet_not_containsInsensitive", + "description": "Stream column input with initial value", + "name": "initialValue", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockStreamCursorValueInput", + "ofType": null + } } }, { "defaultValue": null, - "description": null, - "name": "pallet_startsWith", + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CursorOrdering", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BlockStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_not_startsWith", + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "pallet_endsWith", + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "pallet_not_endsWith", + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_isNull", + "name": "extrinsicsicRoot", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_eq", + "name": "hash", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_eq", + "name": "height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_gt", + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -4465,7 +3589,7 @@ { "defaultValue": null, "description": null, - "name": "name_gte", + "name": "implName", "type": { "kind": "SCALAR", "name": "String", @@ -4475,352 +3599,430 @@ { "defaultValue": null, "description": null, - "name": "name_lt", + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lte", + "name": "parentHash", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_in", + "name": "specName", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_in", + "name": "specVersion", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_contains", + "name": "stateRoot", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_contains", + "name": "timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "timestamptz", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_containsInsensitive", + "name": "validator", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BlockStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_containsInsensitive", + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_startsWith", + "isDeprecated": false, + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_startsWith", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "name_endsWith", + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "height", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_endsWith", + "isDeprecated": false, + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "args_isNull", + "isDeprecated": false, + "name": "specVersion", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockSumFields", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "args_eq", + "isDeprecated": false, + "name": "callsCount", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "args_not_eq", + "isDeprecated": false, + "name": "eventsCount", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "args_jsonContains", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "args_jsonHasKey", + "isDeprecated": false, + "name": "height", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "argsStr_isNull", + "isDeprecated": false, + "name": "implVersion", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "argsStr_containsAll", + "isDeprecated": false, + "name": "specVersion", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockVarPopFields", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "callsCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "argsStr_containsAny", + "isDeprecated": false, + "name": "eventsCount", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "argsStr_containsNone", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "subcalls_every", + "isDeprecated": false, + "name": "height", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "subcalls_some", + "isDeprecated": false, + "name": "implVersion", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "subcalls_none", + "isDeprecated": false, + "name": "specVersion", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockVarSampFields", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "callsCount", + "type": { + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "events_every", + "isDeprecated": false, + "name": "eventsCount", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "events_some", + "isDeprecated": false, + "name": "extrinsicsCount", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "events_none", + "isDeprecated": false, + "name": "height", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "AND", + "isDeprecated": false, + "name": "implVersion", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "OR", + "isDeprecated": false, + "name": "specVersion", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "BlockVarianceFields", "possibleTypes": null }, { "description": null, "enumValues": null, "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Boolean", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"Boolean\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "_eq", "type": { "kind": "SCALAR", "name": "Boolean", @@ -4830,85 +4032,85 @@ { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "_neq", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "_nin", "type": { "kind": "LIST", "name": null, @@ -4917,96 +4119,75 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } } } - }, - { - "defaultValue": null, - "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"bytea\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "height_isNull", + "name": "_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5016,67 +4197,37 @@ { "defaultValue": null, "description": null, - "name": "height_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "height_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "height_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "height_gte", + "name": "_lt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "height_lt", + "name": "_lte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "height_lte", + "name": "_neq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "height_in", + "name": "_nin", "type": { "kind": "LIST", "name": null, @@ -5085,204 +4236,328 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "bytea", "ofType": null } } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"call\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "height_not_in", + "isDeprecated": false, + "name": "address", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "hash_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hash_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hash_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "parentHash_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "parentHash_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "parentHash_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": "JSON select path", + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "stateRoot_isNull", + "isDeprecated": false, + "name": "args", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "jsonb", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "stateRoot_eq", + "isDeprecated": false, + "name": "argsStr", "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { - "defaultValue": null, - "description": null, - "name": "stateRoot_not_eq", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "block", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "OBJECT", + "name": "Block", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "extrinsicsicRoot_isNull", + "isDeprecated": false, + "name": "blockId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": "JSON select path", + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "extrinsicsicRoot_eq", + "isDeprecated": false, + "name": "error", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "jsonb", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "extrinsicsicRoot_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_not_eq", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "events", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } } }, { - "defaultValue": null, - "description": null, - "name": "specName_gt", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "eventsAggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventAggregate", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "specName_gte", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "extrinsic", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Extrinsic", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_lt", + "isDeprecated": false, + "name": "extrinsicId", "type": { "kind": "SCALAR", "name": "String", @@ -5290,65 +4565,71 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_lte", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_in", + "isDeprecated": false, + "name": "name", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_not_in", + "isDeprecated": false, + "name": "pallet", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { - "defaultValue": null, - "description": null, - "name": "specName_contains", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "parent", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Call", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_not_contains", + "isDeprecated": false, + "name": "parentId", "type": { "kind": "SCALAR", "name": "String", @@ -5356,245 +4637,448 @@ } }, { - "defaultValue": null, - "description": null, - "name": "specName_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_startsWith", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "subcalls", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } + } } }, { - "defaultValue": null, - "description": null, - "name": "specName_not_startsWith", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "subcallsAggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CallAggregate", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_endsWith", + "isDeprecated": false, + "name": "success", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Call", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"call\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specName_not_endsWith", + "isDeprecated": false, + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CallAggregateFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "specVersion_isNull", + "isDeprecated": false, + "name": "nodes", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CallAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "specVersion_eq", + "name": "bool_and", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "callAggregateBoolExpBool_and", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "specVersion_not_eq", + "name": "bool_or", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "callAggregateBoolExpBool_or", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "specVersion_gt", + "name": "count", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "callAggregateBoolExpCount", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"call\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, - "description": null, - "name": "specVersion_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specVersion_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specVersion_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specVersion_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "specVersion_not_in", + "isDeprecated": false, + "name": "count", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "implName_isNull", + "isDeprecated": false, + "name": "max", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CallMaxFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "implName_eq", + "isDeprecated": false, + "name": "min", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CallMinFields", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CallAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"call\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "implName_not_eq", + "name": "count", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_gt", + "name": "max", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallMaxOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_gte", + "name": "min", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallMinOrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"call\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "implName_lt", + "name": "_and", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "implName_lte", + "name": "_not", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_in", + "name": "_or", "type": { "kind": "LIST", "name": null, @@ -5602,8 +5086,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", "ofType": null } } @@ -5612,175 +5096,199 @@ { "defaultValue": null, "description": null, - "name": "implName_not_in", + "name": "address", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "IntArrayComparisonExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_contains", + "name": "args", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "JsonbComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_contains", + "name": "argsStr", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringArrayComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_containsInsensitive", + "name": "block", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_containsInsensitive", + "name": "blockId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_startsWith", + "name": "error", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "JsonbComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_startsWith", + "name": "events", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_endsWith", + "name": "eventsAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_endsWith", + "name": "extrinsic", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_isNull", + "name": "extrinsicId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_not_eq", + "name": "name", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_gt", + "name": "pallet", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_gte", + "name": "parent", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_lt", + "name": "parentId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_lte", + "name": "subcalls", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "subcallsAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_in", + "name": "success", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "address", "type": { "kind": "LIST", "name": null, @@ -5796,9 +5304,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "implVersion_not_in", + "isDeprecated": false, + "name": "argsStr", "type": { "kind": "LIST", "name": null, @@ -5807,222 +5317,192 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "timestamp_isNull", + "isDeprecated": false, + "name": "blockId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "timestamp_eq", + "isDeprecated": false, + "name": "extrinsicId", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "timestamp_not_eq", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "timestamp_lte", + "isDeprecated": false, + "name": "name", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - } - }, - { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "validator_isNull", + "isDeprecated": false, + "name": "pallet", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "validator_eq", + "isDeprecated": false, + "name": "parentId", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CallMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"call\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "validator_not_eq", + "name": "address", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_isNull", + "name": "argsStr", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_eq", + "name": "blockId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_not_eq", + "name": "extrinsicId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_gt", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_gte", + "name": "name", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_lt", + "name": "pallet", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_lte", + "name": "parentId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "extrinsicsCount_in", + "isDeprecated": false, + "name": "address", "type": { "kind": "LIST", "name": null, @@ -6038,9 +5518,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "extrinsicsCount_not_in", + "isDeprecated": false, + "name": "argsStr", "type": { "kind": "LIST", "name": null, @@ -6049,435 +5531,508 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "callsCount_isNull", + "isDeprecated": false, + "name": "blockId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "callsCount_eq", + "isDeprecated": false, + "name": "extrinsicId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "callsCount_not_eq", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "callsCount_gt", + "isDeprecated": false, + "name": "name", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "callsCount_gte", + "isDeprecated": false, + "name": "pallet", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "callsCount_lt", + "isDeprecated": false, + "name": "parentId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CallMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"call\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "callsCount_lte", + "name": "address", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_in", + "name": "argsStr", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_not_in", + "name": "blockId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_isNull", + "name": "extrinsicId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_not_eq", + "name": "name", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_gt", + "name": "pallet", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_gte", + "name": "parentId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"call\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "eventsCount_lt", + "name": "address", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_lte", + "name": "args", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_in", + "name": "argsStr", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_not_in", + "name": "block", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsics_every", + "name": "blockId", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsics_some", + "name": "error", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsics_none", + "name": "eventsAggregate", "type": { "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "name": "EventAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_every", + "name": "extrinsic", "type": { "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "name": "ExtrinsicOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_some", + "name": "extrinsicId", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_none", + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_every", + "name": "name", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_some", + "name": "pallet", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_none", + "name": "parent", "type": { "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "name": "CallOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "parentId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "OR", + "name": "subcallsAggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CallAggregateOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "success", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "name": "CallOrderBy", "possibleTypes": null }, { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + "description": "select columns of table \"call\"", + "enumValues": [ { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "address" }, { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "args" }, { - "defaultValue": null, - "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "argsStr" }, { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "blockId" }, { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "error" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "extrinsicId" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "name" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "pallet" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "parentId" }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "success" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CallSelectColumn", + "possibleTypes": null + }, + { + "description": "select \"callAggregateBoolExpBool_andArgumentsColumns\" columns of table \"call\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "success" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CallSelectColumnCallAggregateBoolExpBool_andArgumentsColumns", + "possibleTypes": null + }, + { + "description": "select \"callAggregateBoolExpBool_orArgumentsColumns\" columns of table \"call\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "success" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CallSelectColumnCallAggregateBoolExpBool_orArgumentsColumns", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"call\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, - "description": null, - "name": "id_lt", + "description": "Stream column input with initial value", + "name": "initialValue", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallStreamCursorValueInput", + "ofType": null + } } }, { "defaultValue": null, - "description": null, - "name": "id_lte", + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CursorOrdering", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_in", + "name": "address", "type": { "kind": "LIST", "name": null, @@ -6486,7 +6041,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -6495,7 +6050,17 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "args", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "argsStr", "type": { "kind": "LIST", "name": null, @@ -6513,17 +6078,7 @@ { "defaultValue": null, "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", + "name": "blockId", "type": { "kind": "SCALAR", "name": "String", @@ -6533,17 +6088,17 @@ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "error", "type": { "kind": "SCALAR", - "name": "String", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "extrinsicId", "type": { "kind": "SCALAR", "name": "String", @@ -6553,7 +6108,7 @@ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -6563,7 +6118,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "name", "type": { "kind": "SCALAR", "name": "String", @@ -6573,7 +6128,7 @@ { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "pallet", "type": { "kind": "SCALAR", "name": "String", @@ -6583,7 +6138,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "parentId", "type": { "kind": "SCALAR", "name": "String", @@ -6593,455 +6148,776 @@ { "defaultValue": null, "description": null, - "name": "block_isNull", + "name": "success", "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"cert\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, - "description": null, - "name": "block", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "certHistory", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } + } + } } }, { - "defaultValue": null, - "description": null, - "name": "call_isNull", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "certHistoryAggregate", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEventAggregate", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "call", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_isNull", + "isDeprecated": false, + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_eq", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_not_eq", + "isDeprecated": false, + "name": "isActive", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "index_gt", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "issuer", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Identity", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_gte", + "isDeprecated": false, + "name": "issuerId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "index_lt", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "receiver", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Identity", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_lte", + "isDeprecated": false, + "name": "receiverId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Cert", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"cert\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, - "description": null, - "name": "index_in", + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "OBJECT", + "name": "CertAggregateFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_not_in", + "isDeprecated": false, + "name": "nodes", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } } } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "version_isNull", + "name": "bool_and", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "certAggregateBoolExpBool_and", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_eq", + "name": "bool_or", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "certAggregateBoolExpBool_or", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_not_eq", + "name": "count", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "certAggregateBoolExpCount", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"cert\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "version_gt", + "isDeprecated": false, + "name": "avg", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CertAvgFields", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "version_gte", + "isDeprecated": false, + "name": "count", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "version_lt", + "isDeprecated": false, + "name": "max", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CertMaxFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "version_lte", + "isDeprecated": false, + "name": "min", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CertMinFields", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "version_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "version_not_in", + "isDeprecated": false, + "name": "stddev", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "OBJECT", + "name": "CertStddevFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature_isNull", + "isDeprecated": false, + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CertStddevPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature", + "isDeprecated": false, + "name": "stddevSamp", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicSignatureWhereInput", + "kind": "OBJECT", + "name": "CertStddevSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "tip_isNull", + "isDeprecated": false, + "name": "sum", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CertSumFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "tip_eq", + "isDeprecated": false, + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "CertVarPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "tip_not_eq", + "isDeprecated": false, + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "CertVarSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "tip_gt", + "isDeprecated": false, + "name": "variance", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "CertVarianceFields", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "tip_gte", + "name": "avg", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertAvgOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_lt", + "name": "count", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_lte", + "name": "max", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertMaxOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_in", + "name": "min", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CertMinOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_not_in", + "name": "stddev", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CertStddevOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_isNull", + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CertStddevPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_eq", + "name": "stddevSamp", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertStddevSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_not_eq", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertSumOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_gt", + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertVarPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_gte", + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertVarSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_lt", + "name": "variance", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "fee_lte", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_in", + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"cert\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "_and", "type": { "kind": "LIST", "name": null, @@ -7049,8 +6925,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", "ofType": null } } @@ -7059,7 +6935,17 @@ { "defaultValue": null, "description": null, - "name": "fee_not_in", + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_or", "type": { "kind": "LIST", "name": null, @@ -7067,8 +6953,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", "ofType": null } } @@ -7077,213 +6963,257 @@ { "defaultValue": null, "description": null, - "name": "success_isNull", + "name": "certHistory", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_eq", + "name": "certHistoryAggregate", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CertEventAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_not_eq", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_isNull", + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_not_eq", + "name": "isActive", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_jsonContains", + "name": "issuer", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_jsonHasKey", + "name": "issuerId", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hash_isNull", + "name": "receiver", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hash_eq", + "name": "receiverId", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"cert_event\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "hash_not_eq", + "isDeprecated": false, + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "calls_every", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "cert", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "OBJECT", + "name": "Cert", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "calls_some", + "isDeprecated": false, + "name": "certId", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "calls_none", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "event", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "OBJECT", + "name": "Event", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "events_every", + "isDeprecated": false, + "name": "eventId", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "events_some", + "isDeprecated": false, + "name": "eventType", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "ENUM", + "name": "EventTypeEnum", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "events_none", + "isDeprecated": false, + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEvent", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"cert_event\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "AND", + "isDeprecated": false, + "name": "aggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "ofType": null - } - } + "kind": "OBJECT", + "name": "CertEventAggregateFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "OR", + "isDeprecated": false, + "name": "nodes", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } } } } } ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventAggregate", "possibleTypes": null }, { @@ -7294,266 +7224,369 @@ { "defaultValue": null, "description": null, - "name": "address_isNull", + "name": "count", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "certEventAggregateBoolExpCount", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"cert_event\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "address_eq", + "isDeprecated": false, + "name": "avg", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventAvgFields", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "address_not_eq", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "address_jsonContains", + "isDeprecated": false, + "name": "max", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventMaxFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "address_jsonHasKey", + "isDeprecated": false, + "name": "min", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventMinFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature_isNull", + "isDeprecated": false, + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CertEventStddevFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature_eq", + "isDeprecated": false, + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventStddevPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature_not_eq", + "isDeprecated": false, + "name": "stddevSamp", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventStddevSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature_jsonContains", + "isDeprecated": false, + "name": "sum", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventSumFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signature_jsonHasKey", + "isDeprecated": false, + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "CertEventVarPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "signedExtensions_isNull", + "isDeprecated": false, + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "CertEventVarSampFields", "ofType": null } }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "CertEventVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "signedExtensions_eq", + "name": "avg", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "CertEventAvgOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_not_eq", + "name": "count", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_jsonContains", + "name": "max", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "CertEventMaxOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_jsonHasKey", + "name": "min", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "CertEventMinOrderBy", "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ExtrinsicSignatureWhereInput", - "possibleTypes": null - }, - { - "description": "Big number integer", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "BigInt", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + }, { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CertEventStddevOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventStddevPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "stddevSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventStddevSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventSumOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventVarPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventVarSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_in", + "name": "blockNumber", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"cert_event\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "_and", "type": { "kind": "LIST", "name": null, @@ -7561,8 +7594,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", "ofType": null } } @@ -7571,177 +7604,227 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "_not", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "_or", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "cert", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "certId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "event", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "eventType", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventTypeEnumComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "block_isNull", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "block", + "isDeprecated": false, + "name": "blockNumber", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "extrinsic_isNull", + "isDeprecated": false, + "name": "certId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "extrinsic", + "isDeprecated": false, + "name": "eventId", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "call_isNull", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "call", + "name": "blockNumber", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_isNull", + "name": "certId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_eq", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_not_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_gt", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", "name": "Int", @@ -7749,291 +7832,407 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_gte", + "isDeprecated": false, + "name": "certId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_lt", + "isDeprecated": false, + "name": "eventId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "index_lte", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "index_in", + "name": "blockNumber", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_not_in", + "name": "certId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_isNull", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"cert_event\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "phase_not_eq", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_gt", + "name": "cert", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_gte", + "name": "certId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_lt", + "name": "event", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_lte", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_in", + "name": "eventType", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "phase_not_in", + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"cert_event\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "blockNumber" }, { - "defaultValue": null, - "description": null, - "name": "phase_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "certId" }, { - "defaultValue": null, - "description": null, - "name": "phase_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "eventId" }, { - "defaultValue": null, + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "eventType" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CertEventSelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "phase_containsInsensitive", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "phase_not_containsInsensitive", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "phase_startsWith", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "phase_not_startsWith", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "phase_endsWith", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "phase_not_endsWith", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, - "description": null, - "name": "pallet_isNull", + "description": "Stream column input with initial value", + "name": "initialValue", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventStreamCursorValueInput", + "ofType": null + } } }, { "defaultValue": null, - "description": null, - "name": "pallet_eq", + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CursorOrdering", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_not_eq", + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "pallet_gt", + "name": "certId", "type": { "kind": "SCALAR", "name": "String", @@ -8043,7 +8242,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_gte", + "name": "eventId", "type": { "kind": "SCALAR", "name": "String", @@ -8053,163 +8252,239 @@ { "defaultValue": null, "description": null, - "name": "pallet_lt", + "name": "eventType", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EventTypeEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "pallet_lte", + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "pallet_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "pallet_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_contains", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_not_contains", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventSumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_containsInsensitive", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_not_containsInsensitive", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_startsWith", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_not_startsWith", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, - { - "defaultValue": null, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "pallet_endsWith", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEventVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"cert_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_not_endsWith", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventVarianceOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_isNull", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_eq", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_eq", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -8217,9 +8492,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_gt", + "isDeprecated": false, + "name": "issuerId", "type": { "kind": "SCALAR", "name": "String", @@ -8227,95 +8504,119 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_gte", + "isDeprecated": false, + "name": "receiverId", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "name_lt", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lte", + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_in", + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_in", + "name": "issuerId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_contains", + "name": "receiverId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_contains", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_containsInsensitive", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -8323,9 +8624,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_containsInsensitive", + "isDeprecated": false, + "name": "issuerId", "type": { "kind": "SCALAR", "name": "String", @@ -8333,2914 +8636,6364 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_startsWith", + "isDeprecated": false, + "name": "receiverId", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "name_not_startsWith", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_endsWith", + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_endsWith", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_isNull", + "name": "issuerId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_eq", + "name": "receiverId", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"cert\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "args_not_eq", + "name": "certHistoryAggregate", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "CertEventAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_jsonContains", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_jsonHasKey", + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "argsStr_isNull", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "argsStr_containsAll", + "name": "isActive", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "argsStr_containsAny", + "name": "issuer", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "argsStr_containsNone", + "name": "issuerId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "receiver", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "OR", + "name": "receiverId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "name": "CertOrderBy", "possibleTypes": null }, { - "description": null, + "description": "select columns of table \"cert\"", "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_ASC" + "name": "createdOn" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_DESC" + "name": "expireOn" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "isActive" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_ASC" + "name": "issuerId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_DESC" - }, + "name": "receiverId" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CertSelectColumn", + "possibleTypes": null + }, + { + "description": "select \"certAggregateBoolExpBool_andArgumentsColumns\" columns of table \"cert\"", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_ASC_NULLS_FIRST" - }, + "name": "isActive" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CertSelectColumnCertAggregateBoolExpBool_andArgumentsColumns", + "possibleTypes": null + }, + { + "description": "select \"certAggregateBoolExpBool_orArgumentsColumns\" columns of table \"cert\"", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_DESC_NULLS_LAST" - }, + "name": "isActive" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CertSelectColumnCertAggregateBoolExpBool_orArgumentsColumns", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_height_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_height_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_height_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_height_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_hash_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_hash_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_parentHash_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_parentHash_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_parentHash_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_parentHash_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_stateRoot_ASC" + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertStreamCursorValueInput", + "ofType": null + } + } }, { - "deprecationReason": null, + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_stateRoot_DESC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_stateRoot_ASC_NULLS_FIRST" + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_stateRoot_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_ASC" - }, - { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_DESC" + "name": "isActive", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_ASC_NULLS_FIRST" + "name": "issuerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_DESC_NULLS_LAST" - }, + "name": "receiverId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specName_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specName_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specName_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specName_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertSumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specVersion_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specVersion_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implName_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implName_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implName_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implName_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implVersion_ASC" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implVersion_DESC" - }, + "name": "expireOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implVersion_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implVersion_DESC_NULLS_LAST" - }, + "name": "expireOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertVarianceOrderBy", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"change_owner_key\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_ASC" + "name": "blockNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_timestamp_DESC_NULLS_LAST" + "name": "identity", + "type": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_validator_ASC" + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_validator_DESC" + "name": "next", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_validator_ASC_NULLS_FIRST" + "name": "nextId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_validator_DESC_NULLS_LAST" + "name": "previous", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsCount_ASC" - }, + "name": "previousId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"change_owner_key\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsCount_DESC" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsCount_ASC_NULLS_FIRST" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsCount_DESC_NULLS_LAST" - }, + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "changeOwnerKeyAggregateBoolExpCount", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"change_owner_key\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_callsCount_ASC" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_callsCount_DESC" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_callsCount_ASC_NULLS_FIRST" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_callsCount_DESC_NULLS_LAST" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_ASC" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_DESC" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_ASC_NULLS_FIRST" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_DESC_NULLS_LAST" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeySumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_id_ASC" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_id_DESC" + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyVarSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_id_ASC_NULLS_FIRST" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_id_DESC_NULLS_LAST" + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAvgOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_ASC" + "name": "count", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_DESC" + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyMaxOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_ASC_NULLS_FIRST" + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyMinOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_DESC_NULLS_LAST" + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStddevOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_ASC" - }, + "name": "stddevPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStddevPopOrderBy", + "ofType": null + } + }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_DESC" + "name": "stddevSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStddevSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_ASC_NULLS_FIRST" + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeySumOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_DESC_NULLS_LAST" + "name": "varPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyVarPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_tip_ASC" + "name": "varSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyVarSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_tip_DESC" - }, + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_tip_ASC_NULLS_FIRST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_tip_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"change_owner_key\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_fee_ASC" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_fee_DESC" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_fee_ASC_NULLS_FIRST" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_fee_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_success_ASC" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_success_DESC" + "name": "identity", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_success_ASC_NULLS_FIRST" + "name": "identityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_success_DESC_NULLS_LAST" + "name": "next", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_ASC" + "name": "nextId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_DESC" + "name": "previous", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_ASC_NULLS_FIRST" - }, + "name": "previousId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_hash_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_id_ASC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_id_DESC" + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_id_ASC_NULLS_FIRST" + "name": "nextId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_id_DESC_NULLS_LAST" - }, + "name": "previousId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_success_ASC" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_success_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_success_ASC_NULLS_FIRST" + "name": "identityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_success_DESC_NULLS_LAST" + "name": "nextId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { + "defaultValue": null, + "description": null, + "name": "previousId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_pallet_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_pallet_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_pallet_ASC_NULLS_FIRST" + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_pallet_DESC_NULLS_LAST" + "name": "nextId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "parent_name_ASC" + "name": "previousId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_name_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_name_ASC_NULLS_FIRST" + "name": "identityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent_name_DESC_NULLS_LAST" + "name": "nextId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success_ASC" + "name": "previousId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"change_owner_key\".", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success_ASC_NULLS_FIRST" + "name": "identity", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success_DESC_NULLS_LAST" + "name": "identityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_ASC" + "name": "next", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_DESC" + "name": "nextId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_ASC_NULLS_FIRST" + "name": "previous", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, + "name": "previousId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"change_owner_key\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", "isDeprecated": false, - "name": "pallet_DESC_NULLS_LAST" + "name": "blockNumber" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "name_ASC" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "name_DESC" + "name": "identityId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "name_ASC_NULLS_FIRST" + "name": "nextId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "name_DESC_NULLS_LAST" + "name": "previousId" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "CallOrderByInput", + "name": "ChangeOwnerKeySelectColumn", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddev on columns", "enumValues": null, "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "Event id - e.g. 0000000001-000000-272d6", - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block", + "name": "blockNumber", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic", + "name": "blockNumber", "type": { - "kind": "OBJECT", - "name": "Extrinsic", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call", + "name": "blockNumber", "type": { - "kind": "OBJECT", - "name": "Call", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index", + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStreamCursorValueInput", "ofType": null } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "phase", + "name": "blockNumber", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet", + "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name", + "name": "identityId", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "args", + "name": "nextId", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, + { + "defaultValue": null, + "description": null, + "name": "previousId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "argsStr", + "name": "blockNumber", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "Event", + "name": "ChangeOwnerKeySumFields", "possibleTypes": null }, { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC" - }, + "description": "order by sum() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeySumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_id_ASC" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_id_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_id_ASC_NULLS_FIRST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_id_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ChangeOwnerKeyVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"change_owner_key\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_height_ASC" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyVarianceOrderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_height_DESC" + "name": "GLOBAL" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_height_ASC_NULLS_FIRST" + "name": "ITEM" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_height_DESC_NULLS_LAST" - }, + "name": "PALLET" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CounterLevelEnum", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"CounterLevelEnum\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_ASC" + "name": "_eq", + "type": { + "kind": "ENUM", + "name": "CounterLevelEnum", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_DESC" + "name": "_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CounterLevelEnum", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_ASC_NULLS_FIRST" + "name": "_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_DESC_NULLS_LAST" + "name": "_neq", + "type": { + "kind": "ENUM", + "name": "CounterLevelEnum", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_parentHash_ASC" - }, + "name": "_nin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CounterLevelEnum", + "ofType": null + } + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CounterLevelEnumComparisonExp", + "possibleTypes": null + }, + { + "description": "ordering argument of a cursor", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "ascending ordering of the cursor", "isDeprecated": false, - "name": "block_parentHash_DESC" + "name": "ASC" }, { "deprecationReason": null, - "description": null, + "description": "descending ordering of the cursor", "isDeprecated": false, - "name": "block_parentHash_ASC_NULLS_FIRST" - }, + "name": "DESC" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CursorOrdering", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"event\"", + "enumValues": null, + "fields": [ { + "args": [ + { + "defaultValue": null, + "description": "JSON select path", + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_parentHash_DESC_NULLS_LAST" + "name": "args", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_stateRoot_ASC" + "name": "argsStr", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_stateRoot_DESC" + "name": "block", + "type": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_stateRoot_ASC_NULLS_FIRST" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_stateRoot_DESC_NULLS_LAST" + "name": "call", + "type": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsicRoot_ASC" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_extrinsicsicRoot_DESC" + "name": "extrinsic", + "type": { + "kind": "OBJECT", + "name": "Extrinsic", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsicRoot_ASC_NULLS_FIRST" + "name": "extrinsicId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsicRoot_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specName_ASC" + "name": "index", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specName_DESC" + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specName_ASC_NULLS_FIRST" + "name": "pallet", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specName_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_specVersion_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_specVersion_DESC" - }, + "name": "phase", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Event", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"event\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_ASC_NULLS_FIRST" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "EventAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_DESC_NULLS_LAST" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implName_ASC" - }, + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "eventAggregateBoolExpCount", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"event\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implName_DESC" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "EventAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implName_ASC_NULLS_FIRST" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implName_DESC_NULLS_LAST" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "EventMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implVersion_ASC" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "EventMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implVersion_DESC" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "EventStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implVersion_ASC_NULLS_FIRST" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "EventStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implVersion_DESC_NULLS_LAST" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "EventStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_ASC" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "EventSumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_DESC" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "EventVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_ASC_NULLS_FIRST" + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "EventVarSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_DESC_NULLS_LAST" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "EventVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_validator_ASC" + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventAvgOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_validator_DESC" + "name": "count", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_validator_ASC_NULLS_FIRST" + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventMaxOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_validator_DESC_NULLS_LAST" + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventMinOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsCount_ASC" + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventStddevOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsCount_DESC" + "name": "stddevPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventStddevPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsCount_ASC_NULLS_FIRST" + "name": "stddevSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventStddevSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsCount_DESC_NULLS_LAST" + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventSumOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_callsCount_ASC" + "name": "varPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventVarPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_callsCount_DESC" + "name": "varSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventVarSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_callsCount_ASC_NULLS_FIRST" - }, + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_callsCount_DESC_NULLS_LAST" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_eventsCount_ASC" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"event\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_eventsCount_DESC" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_eventsCount_ASC_NULLS_FIRST" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_eventsCount_DESC_NULLS_LAST" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_id_ASC" + "name": "args", + "type": { + "kind": "INPUT_OBJECT", + "name": "JsonbComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_id_DESC" + "name": "argsStr", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringArrayComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_id_ASC_NULLS_FIRST" + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_id_DESC_NULLS_LAST" + "name": "blockId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_ASC" + "name": "call", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_DESC" + "name": "callId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_ASC_NULLS_FIRST" + "name": "extrinsic", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_index_DESC_NULLS_LAST" + "name": "extrinsicId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_ASC" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_DESC" + "name": "index", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_ASC_NULLS_FIRST" + "name": "name", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_version_DESC_NULLS_LAST" + "name": "pallet", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_tip_ASC" - }, + "name": "phase", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_tip_DESC" + "name": "argsStr", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_tip_ASC_NULLS_FIRST" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_tip_DESC_NULLS_LAST" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_fee_ASC" + "name": "extrinsicId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_fee_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_fee_ASC_NULLS_FIRST" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_fee_DESC_NULLS_LAST" + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_success_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "extrinsic_success_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "extrinsic_success_ASC_NULLS_FIRST" + "name": "pallet", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsic_success_DESC_NULLS_LAST" - }, + "name": "phase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_ASC" + "name": "argsStr", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_DESC" + "name": "blockId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_ASC_NULLS_FIRST" + "name": "callId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic_hash_DESC_NULLS_LAST" + "name": "extrinsicId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_id_ASC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_id_DESC" + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_id_ASC_NULLS_FIRST" + "name": "name", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_id_DESC_NULLS_LAST" + "name": "pallet", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_success_ASC" - }, + "name": "phase", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_success_DESC" + "name": "argsStr", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_success_ASC_NULLS_FIRST" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_success_DESC_NULLS_LAST" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_pallet_ASC" + "name": "extrinsicId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_pallet_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_pallet_ASC_NULLS_FIRST" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_pallet_DESC_NULLS_LAST" + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_name_ASC" + "name": "pallet", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_name_DESC" - }, + "name": "phase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_name_ASC_NULLS_FIRST" + "name": "argsStr", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_name_DESC_NULLS_LAST" + "name": "blockId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index_ASC" + "name": "callId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index_DESC" + "name": "extrinsicId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index_DESC_NULLS_LAST" + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "phase_ASC" + "name": "name", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "phase_DESC" + "name": "pallet", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "phase_ASC_NULLS_FIRST" + "name": "phase", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"event\".", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "args", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "phase_DESC_NULLS_LAST" + "name": "argsStr", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_ASC" + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_DESC" + "name": "blockId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_ASC_NULLS_FIRST" + "name": "call", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pallet_DESC_NULLS_LAST" + "name": "callId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name_ASC" + "name": "extrinsic", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name_DESC" + "name": "extrinsicId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "EventOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "address", + "name": "name", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "signature", + "name": "pallet", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "signedExtensions", + "name": "phase", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ExtrinsicSignature", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", "possibleTypes": null }, { - "description": null, + "description": "select columns of table \"event\"", "enumValues": [ { "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_DESC" + "name": "args" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "argsStr" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "blockId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_ASC" + "name": "callId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_DESC" + "name": "extrinsicId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_ASC_NULLS_FIRST" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_id_DESC_NULLS_LAST" + "name": "index" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_height_ASC" + "name": "name" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_height_DESC" + "name": "pallet" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "block_height_ASC_NULLS_FIRST" - }, + "name": "phase" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EventSelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_height_DESC_NULLS_LAST" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_ASC" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_hash_DESC" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_hash_ASC_NULLS_FIRST" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_hash_DESC_NULLS_LAST" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_parentHash_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_parentHash_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_parentHash_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_parentHash_DESC_NULLS_LAST" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_stateRoot_ASC" + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventStreamCursorValueInput", + "ofType": null + } + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_stateRoot_DESC" - }, + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_stateRoot_ASC_NULLS_FIRST" + "name": "args", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_stateRoot_DESC_NULLS_LAST" + "name": "argsStr", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_ASC" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_DESC" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_ASC_NULLS_FIRST" + "name": "extrinsicId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_extrinsicsicRoot_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specName_ASC" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specName_DESC" + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specName_ASC_NULLS_FIRST" + "name": "pallet", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specName_DESC_NULLS_LAST" - }, + "name": "phase", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_ASC" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_specVersion_DESC" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventSumOrderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_ASC_NULLS_FIRST" + "name": "CREATION" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_specVersion_DESC_NULLS_LAST" + "name": "REMOVAL" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_implName_ASC" - }, + "name": "RENEWAL" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EventTypeEnum", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"EventTypeEnum\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implName_DESC" + "name": "_eq", + "type": { + "kind": "ENUM", + "name": "EventTypeEnum", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implName_ASC_NULLS_FIRST" + "name": "_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventTypeEnum", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implName_DESC_NULLS_LAST" + "name": "_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implVersion_ASC" + "name": "_neq", + "type": { + "kind": "ENUM", + "name": "EventTypeEnum", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_implVersion_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_implVersion_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_implVersion_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "block_timestamp_DESC" - }, + "name": "_nin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventTypeEnum", + "ofType": null + } + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventTypeEnumComparisonExp", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_timestamp_ASC_NULLS_FIRST" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_timestamp_DESC_NULLS_LAST" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_validator_ASC" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_validator_DESC" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_validator_ASC_NULLS_FIRST" - }, + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "EventVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block_validator_DESC_NULLS_LAST" - }, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventVarianceOrderBy", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"extrinsic\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_extrinsicsCount_ASC" + "name": "block", + "type": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsCount_DESC" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "block_extrinsicsCount_ASC_NULLS_FIRST" + "name": "call", + "type": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_extrinsicsCount_DESC_NULLS_LAST" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "block_callsCount_ASC" + "name": "calls", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } + } + } }, { - "deprecationReason": null, - "description": null, + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "block_callsCount_DESC" + "name": "callsAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CallAggregate", + "ofType": null + } + } }, { + "args": [ + { + "defaultValue": null, + "description": "JSON select path", + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_callsCount_ASC_NULLS_FIRST" + "name": "error", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "block_callsCount_DESC_NULLS_LAST" + "name": "events", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "An aggregate relationship", "isDeprecated": false, - "name": "block_eventsCount_ASC" + "name": "eventsAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventAggregate", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_DESC" + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_ASC_NULLS_FIRST" + "name": "hash", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "bytea", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "block_eventsCount_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_id_ASC" - }, + "name": "index", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, { + "args": [ + { + "defaultValue": null, + "description": "JSON select path", + "name": "path", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_id_DESC" + "name": "signature", + "type": { + "kind": "SCALAR", + "name": "jsonb", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_id_ASC_NULLS_FIRST" + "name": "success", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_id_DESC_NULLS_LAST" + "name": "tip", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_success_ASC" - }, + "name": "version", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Extrinsic", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"extrinsic\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_success_DESC" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_success_ASC_NULLS_FIRST" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Extrinsic", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_success_DESC_NULLS_LAST" + "name": "bool_and", + "type": { + "kind": "INPUT_OBJECT", + "name": "extrinsicAggregateBoolExpBool_and", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_pallet_ASC" + "name": "bool_or", + "type": { + "kind": "INPUT_OBJECT", + "name": "extrinsicAggregateBoolExpBool_or", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call_pallet_DESC" - }, + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "extrinsicAggregateBoolExpCount", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"extrinsic\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_pallet_ASC_NULLS_FIRST" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_pallet_DESC_NULLS_LAST" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_name_ASC" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_name_DESC" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_name_ASC_NULLS_FIRST" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "call_name_DESC_NULLS_LAST" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_ASC" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_DESC" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicSumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_ASC_NULLS_FIRST" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_DESC_NULLS_LAST" + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicVarSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "version_ASC" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "ExtrinsicVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "version_DESC" + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicAvgOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "version_ASC_NULLS_FIRST" + "name": "count", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "version_DESC_NULLS_LAST" + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicMaxOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tip_ASC" + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicMinOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tip_DESC" + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStddevOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tip_ASC_NULLS_FIRST" + "name": "stddevPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStddevPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tip_DESC_NULLS_LAST" + "name": "stddevSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStddevSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "fee_ASC" + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicSumOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "fee_DESC" + "name": "varPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicVarPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "fee_ASC_NULLS_FIRST" + "name": "varSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicVarSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "fee_DESC_NULLS_LAST" - }, + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "success_ASC" + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "success_DESC" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "success_ASC_NULLS_FIRST" + "name": "tip", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "success_DESC_NULLS_LAST" - }, + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_ASC" + "name": "fee", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_DESC" + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_ASC_NULLS_FIRST" + "name": "tip", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_DESC_NULLS_LAST" + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } } ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "ExtrinsicOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicAvgOrderBy", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "Boolean expression to filter rows from the table \"extrinsic\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "height_ASC" + "name": "blockId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "height_DESC" + "name": "call", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "height_ASC_NULLS_FIRST" + "name": "callId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "height_DESC_NULLS_LAST" + "name": "calls", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_ASC" + "name": "callsAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallAggregateBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_DESC" + "name": "error", + "type": { + "kind": "INPUT_OBJECT", + "name": "JsonbComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_ASC_NULLS_FIRST" + "name": "events", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash_DESC_NULLS_LAST" + "name": "eventsAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventAggregateBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parentHash_ASC" + "name": "fee", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumericComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parentHash_DESC" + "name": "hash", + "type": { + "kind": "INPUT_OBJECT", + "name": "ByteaComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parentHash_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parentHash_DESC_NULLS_LAST" + "name": "index", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "stateRoot_ASC" + "name": "signature", + "type": { + "kind": "INPUT_OBJECT", + "name": "JsonbComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "stateRoot_DESC" + "name": "success", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "stateRoot_ASC_NULLS_FIRST" + "name": "tip", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumericComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "stateRoot_DESC_NULLS_LAST" - }, + "name": "version", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsicsicRoot_ASC" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsicsicRoot_DESC" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsicsicRoot_ASC_NULLS_FIRST" + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "extrinsicsicRoot_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "specName_ASC" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "specName_DESC" + "name": "tip", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "specName_ASC_NULLS_FIRST" - }, + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specName_DESC_NULLS_LAST" + "name": "blockId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specVersion_ASC" + "name": "callId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specVersion_DESC" + "name": "fee", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specVersion_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specVersion_DESC_NULLS_LAST" + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "implName_ASC" + "name": "tip", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "implName_DESC" - }, + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implName_ASC_NULLS_FIRST" + "name": "blockId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implName_DESC_NULLS_LAST" + "name": "callId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implVersion_ASC" + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implVersion_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implVersion_ASC_NULLS_FIRST" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "implVersion_DESC_NULLS_LAST" + "name": "tip", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp_ASC" - }, + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp_DESC" + "name": "blockId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp_ASC_NULLS_FIRST" + "name": "callId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, + "name": "fee", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "validator_ASC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "validator_DESC" + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "validator_ASC_NULLS_FIRST" + "name": "tip", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "validator_DESC_NULLS_LAST" + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"extrinsic\".", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "block", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsicsCount_ASC" + "name": "blockId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, + "description": null, + "name": "call", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "callId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "callsAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallAggregateOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "eventsAggregate", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventAggregateOrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fee", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hash", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "index", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "signature", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "success", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tip", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"extrinsic\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", "isDeprecated": false, - "name": "extrinsicsCount_DESC" + "name": "blockId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "extrinsicsCount_ASC_NULLS_FIRST" + "name": "callId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "extrinsicsCount_DESC_NULLS_LAST" + "name": "error" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "callsCount_ASC" + "name": "fee" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "callsCount_DESC" + "name": "hash" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "callsCount_ASC_NULLS_FIRST" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "callsCount_DESC_NULLS_LAST" + "name": "index" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "eventsCount_ASC" + "name": "signature" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "eventsCount_DESC" + "name": "success" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "eventsCount_ASC_NULLS_FIRST" + "name": "tip" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "eventsCount_DESC_NULLS_LAST" + "name": "version" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "BlockOrderByInput", + "name": "ExtrinsicSelectColumn", "possibleTypes": null }, { - "description": null, - "enumValues": null, + "description": "select \"extrinsicAggregateBoolExpBool_andArgumentsColumns\" columns of table \"extrinsic\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "success" + } + ], "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_andArgumentsColumns", + "possibleTypes": null + }, + { + "description": "select \"extrinsicAggregateBoolExpBool_orArgumentsColumns\" columns of table \"extrinsic\"", + "enumValues": [ { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "success" } ], + "fields": null, + "inputFields": null, "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "kind": "ENUM", + "name": "ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_orArgumentsColumns", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddev on columns", "enumValues": null, "fields": [ { @@ -11248,23 +15001,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11272,15 +15013,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11288,69 +15025,85 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "totalCount", + "name": "tip", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "BlocksConnection", + "name": "ExtrinsicStddevFields", "possibleTypes": null }, { - "description": null, + "description": "order by stddev() on columns of table \"extrinsic\"", "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "node", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "cursor", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tip", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "BlockEdge", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStddevOrderBy", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddevPop on columns", "enumValues": null, "fields": [ { @@ -11358,15 +15111,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "hasNextPage", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11374,15 +15123,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "hasPreviousPage", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11390,15 +15135,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "startCursor", + "name": "tip", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11406,93 +15147,73 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "endCursor", + "name": "version", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "PageInfo", + "name": "ExtrinsicStddevPopFields", "possibleTypes": null }, { - "description": null, + "description": "order by stddevPop() on columns of table \"extrinsic\"", "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "edges", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicEdge", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pageInfo", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "totalCount", + "name": "tip", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ExtrinsicsConnection", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStddevPopOrderBy", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddevSamp on columns", "enumValues": null, "fields": [ { @@ -11500,15 +15221,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11516,50 +15233,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ExtrinsicEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "edges", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CallEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11567,15 +15245,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "tip", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -11583,329 +15257,125 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "totalCount", + "name": "version", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "CallsConnection", + "name": "ExtrinsicStddevSampFields", "possibleTypes": null }, { - "description": null, + "description": "order by stddevSamp() on columns of table \"extrinsic\"", "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "node", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CallEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "edges", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventEdge", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pageInfo", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "EventsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "node", + "name": "tip", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "cursor", + "name": "version", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "EventEdge", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStddevSampOrderBy", "possibleTypes": null }, { - "description": null, + "description": "Streaming cursor of the table \"extrinsic\"", "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ItemType", - "ofType": null - } - } - }, + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level", + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CounterLevel", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStreamCursorValueInput", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "total", + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ItemsCounter", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "Extrinsics" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "Calls" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "Events" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ItemType", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "Global" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "Pallet" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "Item" - } - ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "CounterLevel", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStreamCursorInput", "possibleTypes": null }, { - "description": null, + "description": "Initial value of the column from where the streaming should start", "enumValues": null, "fields": null, "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "blockId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "callId", "type": { "kind": "SCALAR", "name": "String", @@ -11915,37 +15385,37 @@ { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "error", "type": { "kind": "SCALAR", - "name": "String", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "fee", "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "hash", "type": { "kind": "SCALAR", - "name": "String", + "name": "bytea", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -11955,601 +15425,523 @@ { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "index", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "signature", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "success", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "tip", "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "version", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_containsInsensitive", + "isDeprecated": false, + "name": "fee", "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_startsWith", + "isDeprecated": false, + "name": "tip", "type": { "kind": "SCALAR", - "name": "String", + "name": "numeric", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", + "isDeprecated": false, + "name": "version", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "fee", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "index", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "type_isNull", + "name": "tip", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "type_eq", + "name": "version", "type": { "kind": "ENUM", - "name": "ItemType", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicSumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "type_not_eq", + "isDeprecated": false, + "name": "fee", "type": { - "kind": "ENUM", - "name": "ItemType", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "type_in", + "isDeprecated": false, + "name": "index", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ItemType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "type_not_in", + "isDeprecated": false, + "name": "tip", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ItemType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "level_isNull", + "isDeprecated": false, + "name": "version", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "level_eq", + "name": "fee", "type": { "kind": "ENUM", - "name": "CounterLevel", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "level_not_eq", + "name": "index", "type": { "kind": "ENUM", - "name": "CounterLevel", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "level_in", + "name": "tip", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CounterLevel", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "level_not_in", + "name": "version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CounterLevel", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "total_isNull", + "isDeprecated": false, + "name": "fee", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "total_eq", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "total_not_eq", + "isDeprecated": false, + "name": "tip", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "total_gt", + "isDeprecated": false, + "name": "version", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"extrinsic\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "total_gte", + "name": "fee", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "total_lt", + "name": "index", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "total_lte", + "name": "tip", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "total_in", + "name": "version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ItemsCounterWhereInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ItemsCounterWhereInput", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "ItemsCounterWhereInput", + "name": "ExtrinsicVarSampOrderBy", "possibleTypes": null }, { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "level_DESC_NULLS_LAST" - }, + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "total_ASC" + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "total_DESC" + "name": "index", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "total_ASC_NULLS_FIRST" + "name": "tip", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "total_DESC_NULLS_LAST" + "name": "version", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } } ], - "fields": null, "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ItemsCounterOrderByInput", + "interfaces": [], + "kind": "OBJECT", + "name": "ExtrinsicVarianceFields", "possibleTypes": null }, { - "description": null, + "description": "order by variance() on columns of table \"extrinsic\"", "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "edges", + "name": "fee", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ItemsCounterEdge", - "ofType": null - } - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "pageInfo", + "name": "index", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "totalCount", + "name": "tip", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "version", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ItemsCountersConnection", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicVarianceOrderBy", "possibleTypes": null }, { "description": null, "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Float", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"identity\"", + "enumValues": null, "fields": [ { "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "node", + "name": "account", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ItemsCounter", - "ofType": null - } + "kind": "OBJECT", + "name": "Account", + "ofType": null } }, { @@ -12557,60 +15949,19 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", + "name": "accountId", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ItemsCounterEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "Account address is SS58 format", - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, + }, { "args": [ { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -12619,7 +15970,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "TransferOrderByInput", + "name": "CertSelectColumn", "ofType": null } } @@ -12627,8 +15978,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -12637,19 +15988,47 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "transfersIssued", + "name": "certIssued", "type": { "kind": "NON_NULL", "name": null, @@ -12661,7 +16040,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Transfer", + "name": "Cert", "ofType": null } } @@ -12672,18 +16051,91 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "where", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "certIssuedAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -12692,7 +16144,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "TransferOrderByInput", + "name": "CertSelectColumn", "ofType": null } } @@ -12700,8 +16152,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -12710,19 +16162,47 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": null, + "description": "An array relationship", "isDeprecated": false, - "name": "transfersReceived", + "name": "certReceived", "type": { "kind": "NON_NULL", "name": null, @@ -12734,41 +16214,19 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Transfer", + "name": "Cert", "ofType": null } } } } }, - { - "args": [], - "deprecationReason": null, - "description": "current account for the identity", - "isDeprecated": false, - "name": "identity", - "type": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - }, { "args": [ { "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -12777,7 +16235,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", + "name": "CertSelectColumn", "ofType": null } } @@ -12785,8 +16243,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -12795,74 +16253,79 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": "was once account of the identity", + "description": "An aggregate relationship", "isDeprecated": false, - "name": "wasIdentity", + "name": "certReceivedAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } - } + "kind": "OBJECT", + "name": "CertAggregate", + "ofType": null } } }, { "args": [], "deprecationReason": null, - "description": "linked to the identity", + "description": "An object relationship", "isDeprecated": false, - "name": "linkedIdentity", + "name": "createdIn", "type": { "kind": "OBJECT", - "name": "Identity", + "name": "Event", "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Account", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", + "name": "createdInId", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { @@ -12870,7 +16333,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", + "name": "createdOn", "type": { "kind": "NON_NULL", "name": null, @@ -12886,13 +16349,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp", + "name": "expireOn", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -12902,13 +16365,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from", + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Account", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -12918,13 +16381,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "to", + "name": "index", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Account", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -12934,13 +16397,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "amount", + "name": "isMember", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null } } @@ -12950,643 +16413,1312 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Transfer", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", + "name": "lastChangeOn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_in", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "linkedAccount", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", "ofType": null } } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "linkedAccountAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountAggregate", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "membershipHistory", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } + } + } } }, { - "defaultValue": null, - "description": null, - "name": "id_containsInsensitive", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "membershipHistoryAggregate", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEventAggregate", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", + "isDeprecated": false, + "name": "name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_startsWith", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "ownerKeyChange", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + } + } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_lte", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "ownerKeyChangeAggregate", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregate", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "blockNumber_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } } - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_in", + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "smithCertIssued", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "timestamp_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_eq", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_not_eq", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "timestamp_lte", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "smithCertIssuedAggregate", "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCertAggregate", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "timestamp_in", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "An array relationship", + "isDeprecated": false, + "name": "smithCertReceived", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", "ofType": null } } + ], + "deprecationReason": null, + "description": "An aggregate relationship", + "isDeprecated": false, + "name": "smithCertReceivedAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCertAggregate", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "from_isNull", + "isDeprecated": false, + "name": "smithStatus", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "SmithStatusEnum", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "from", + "isDeprecated": false, + "name": "status", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "ENUM", + "name": "IdentityStatusEnum", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "to_isNull", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "\"Get UD History by Identity\"", + "isDeprecated": false, + "name": "udHistory", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Identity", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"identity\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "to", + "isDeprecated": false, + "name": "aggregate", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "OBJECT", + "name": "IdentityAggregateFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_isNull", + "isDeprecated": false, + "name": "nodes", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + } + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityAggregate", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"identity\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_eq", + "isDeprecated": false, + "name": "avg", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "IdentityAvgFields", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentitySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "amount_not_eq", + "isDeprecated": false, + "name": "count", "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_gt", + "isDeprecated": false, + "name": "max", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "IdentityMaxFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_gte", + "isDeprecated": false, + "name": "min", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "IdentityMinFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_lt", + "isDeprecated": false, + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "IdentityStddevFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_lte", + "isDeprecated": false, + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "OBJECT", + "name": "IdentityStddevPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_in", + "isDeprecated": false, + "name": "stddevSamp", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "OBJECT", + "name": "IdentityStddevSampFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "amount_not_in", + "isDeprecated": false, + "name": "sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "OBJECT", + "name": "IdentitySumFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_isNull", + "isDeprecated": false, + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "IdentityVarPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_eq", + "isDeprecated": false, + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "IdentityVarSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_not_eq", + "isDeprecated": false, + "name": "variance", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "IdentityVarianceFields", "ofType": null } - }, - { - "defaultValue": null, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityAggregateFields", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_gt", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_gte", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_lt", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "comment_lte", + "isDeprecated": false, + "name": "lastChangeOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityAvgFields", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"identity\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "comment_in", + "name": "_and", "type": { "kind": "LIST", "name": null, @@ -13594,8 +17726,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } } @@ -13604,7 +17736,17 @@ { "defaultValue": null, "description": null, - "name": "comment_not_in", + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_or", "type": { "kind": "LIST", "name": null, @@ -13612,8 +17754,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } } @@ -13622,507 +17764,454 @@ { "defaultValue": null, "description": null, - "name": "comment_contains", + "name": "account", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_not_contains", + "name": "accountId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_containsInsensitive", + "name": "certIssued", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_not_containsInsensitive", + "name": "certIssuedAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_startsWith", + "name": "certReceived", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_not_startsWith", + "name": "certReceivedAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_endsWith", + "name": "createdIn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "comment_not_endsWith", + "name": "createdInId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "index", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "isMember", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "lastChangeOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "linkedAccount", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "linkedAccountAggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "AccountAggregateBoolExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "membershipHistory", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "membershipHistoryAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "MembershipEventAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "name", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "ownerKeyChange", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "ownerKeyChangeAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "smithCertIssued", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "smithCertIssuedAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "smithCertReceived", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "smithCertReceivedAggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertAggregateBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "transfersIssued_every", + "name": "smithStatus", "type": { "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "name": "SmithStatusEnumComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "transfersIssued_some", + "name": "status", "type": { "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "name": "IdentityStatusEnumComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "transfersIssued_none", + "name": "udHistory", "type": { "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "name": "UdHistoryBoolExp", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "transfersReceived_every", + "isDeprecated": false, + "name": "accountId", "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "transfersReceived_some", + "isDeprecated": false, + "name": "createdInId", "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "transfersReceived_none", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "identity_isNull", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "identity", + "isDeprecated": false, + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "wasIdentity_every", + "isDeprecated": false, + "name": "index", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "wasIdentity_some", + "isDeprecated": false, + "name": "lastChangeOn", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "wasIdentity_none", + "isDeprecated": false, + "name": "name", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityMaxFields", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "linkedIdentity_isNull", + "isDeprecated": false, + "name": "accountId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "linkedIdentity", + "isDeprecated": false, + "name": "createdInId", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "AND", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_isNull", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_eq", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -14130,371 +18219,450 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gt", + "isDeprecated": false, + "name": "lastChangeOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gte", + "isDeprecated": false, + "name": "name", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityMinFields", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"identity\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "account", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "accountId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "certIssuedAggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CertAggregateOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "certReceivedAggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CertAggregateOrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "createdIn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "createdInId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "index", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "isMember", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "lastChangeOn", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_isNull", + "name": "linkedAccountAggregate", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AccountAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_eq", + "name": "membershipHistoryAggregate", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_not_eq", + "name": "name", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_gt", + "name": "ownerKeyChangeAggregate", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_gte", + "name": "smithCertIssuedAggregate", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SmithCertAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_lt", + "name": "smithCertReceivedAggregate", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SmithCertAggregateOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_lte", + "name": "smithStatus", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_in", + "name": "status", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_not_in", + "name": "udHistoryAggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "UdHistoryAggregateOrderBy", + "ofType": null } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"identity\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "accountId" }, { - "defaultValue": null, + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "createdInId" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "createdOn" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "expireOn" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "index" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "isMember" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "lastChangeOn" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "name" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "smithStatus" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "status" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "IdentitySelectColumn", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, "description": null, - "name": "account_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "MEMBER" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "account", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "NOTMEMBER" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "name_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "REMOVED" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "name_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "REVOKED" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "name_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "UNCONFIRMED" }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "UNVALIDATED" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "IdentityStatusEnum", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"IdentityStatusEnum\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "name_gt", + "name": "_eq", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "IdentityStatusEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_gte", + "name": "_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentityStatusEnum", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "name_lt", + "name": "_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lte", + "name": "_neq", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "IdentityStatusEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_in", + "name": "_nin", "type": { "kind": "LIST", "name": null, @@ -14502,201 +18670,260 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "IdentityStatusEnum", "ofType": null } } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IdentityStatusEnumComparisonExp", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_in", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_contains", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_contains", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_containsInsensitive", + "isDeprecated": false, + "name": "lastChangeOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityStddevFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_containsInsensitive", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_startsWith", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_startsWith", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_endsWith", + "isDeprecated": false, + "name": "lastChangeOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityStddevPopFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "name_not_endsWith", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "status_isNull", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "status_eq", + "isDeprecated": false, + "name": "index", "type": { - "kind": "ENUM", - "name": "IdentityStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "status_not_eq", + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "lastChangeOn", "type": { - "kind": "ENUM", - "name": "IdentityStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityStddevSampFields", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"identity\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, - "description": null, - "name": "status_in", + "description": "Stream column input with initial value", + "name": "initialValue", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IdentityStatus", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "IdentityStreamCursorValueInput", + "ofType": null } } }, { "defaultValue": null, - "description": null, - "name": "status_not_in", + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IdentityStatus", - "ofType": null - } - } + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IdentityStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "createdOn_isNull", + "name": "accountId", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_eq", + "name": "createdInId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_not_eq", + "name": "createdOn", "type": { "kind": "SCALAR", "name": "Int", @@ -14706,7 +18933,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_gt", + "name": "expireOn", "type": { "kind": "SCALAR", "name": "Int", @@ -14716,17 +18943,17 @@ { "defaultValue": null, "description": null, - "name": "createdOn_gte", + "name": "id", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_lt", + "name": "index", "type": { "kind": "SCALAR", "name": "Int", @@ -14736,83 +18963,81 @@ { "defaultValue": null, "description": null, - "name": "createdOn_lte", + "name": "isMember", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_in", + "name": "lastChangeOn", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_not_in", + "name": "name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdIn_isNull", + "name": "smithStatus", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "SmithStatusEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdIn", + "name": "status", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "ENUM", + "name": "IdentityStatusEnum", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IdentityStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_isNull", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_eq", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", "name": "Int", @@ -14820,9 +19045,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_not_eq", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", "name": "Int", @@ -14830,311 +19057,457 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_gt", + "isDeprecated": false, + "name": "lastChangeOn", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentitySumFields", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_gte", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_lt", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_lte", + "isDeprecated": false, + "name": "index", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_in", + "isDeprecated": false, + "name": "lastChangeOn", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityVarPopFields", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "lastChangeOn_not_in", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "smithStatus_isNull", + "isDeprecated": false, + "name": "expireOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "smithStatus_eq", + "isDeprecated": false, + "name": "index", "type": { - "kind": "ENUM", - "name": "SmithStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "smithStatus_not_eq", + "isDeprecated": false, + "name": "lastChangeOn", "type": { - "kind": "ENUM", - "name": "SmithStatus", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityVarSampFields", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "smithStatus_in", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithStatus", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "smithStatus_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithStatus", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "certIssued_every", + "isDeprecated": false, + "name": "expireOn", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "certIssued_some", + "isDeprecated": false, + "name": "index", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "certIssued_none", + "isDeprecated": false, + "name": "lastChangeOn", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "IdentityVarianceFields", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Int", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, - "description": null, - "name": "certReceived_every", + "description": "is the array contained in the given array value", + "name": "_containedIn", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, - "description": null, - "name": "certReceived_some", + "description": "does the array contain the given value", + "name": "_contains", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "certReceived_none", + "name": "_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "smithCertIssued_every", + "name": "_gt", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "smithCertIssued_some", + "name": "_gte", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "smithCertIssued_none", + "name": "_in", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + } } }, { "defaultValue": null, "description": null, - "name": "smithCertReceived_every", + "name": "_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "smithCertReceived_some", + "name": "_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "smithCertReceived_none", + "name": "_lte", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "isMember_isNull", + "name": "_neq", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "isMember_eq", + "name": "_nin", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IntArrayComparisonExp", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"Int\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "isMember_not_eq", + "name": "_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_isNull", + "name": "_gt", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_eq", + "name": "_gte", "type": { "kind": "SCALAR", "name": "Int", @@ -15144,27 +19517,35 @@ { "defaultValue": null, "description": null, - "name": "expireOn_not_eq", + "name": "_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "expireOn_gt", + "name": "_isNull", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_gte", + "name": "_lt", "type": { "kind": "SCALAR", "name": "Int", @@ -15174,7 +19555,7 @@ { "defaultValue": null, "description": null, - "name": "expireOn_lt", + "name": "_lte", "type": { "kind": "SCALAR", "name": "Int", @@ -15184,7 +19565,7 @@ { "defaultValue": null, "description": null, - "name": "expireOn_lte", + "name": "_neq", "type": { "kind": "SCALAR", "name": "Int", @@ -15194,7 +19575,7 @@ { "defaultValue": null, "description": null, - "name": "expireOn_in", + "name": "_nin", "type": { "kind": "LIST", "name": null, @@ -15208,137 +19589,99 @@ } } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "expireOn_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "membershipHistory_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "membershipHistory_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "membershipHistory_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "CALLS" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "ownerKeyChange_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "EVENTS" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "ownerKeyChange_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - }, + "isDeprecated": false, + "name": "EXTRINSICS" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ItemTypeEnum", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"ItemTypeEnum\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "ownerKeyChange_none", + "name": "_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "ENUM", + "name": "ItemTypeEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "linkedAccount_every", + "name": "_in", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemTypeEnum", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "linkedAccount_some", + "name": "_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "linkedAccount_none", + "name": "_neq", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "ENUM", + "name": "ItemTypeEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "OR", + "name": "_nin", "type": { "kind": "LIST", "name": null, @@ -15346,8 +19689,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "ItemTypeEnum", "ofType": null } } @@ -15356,170 +19699,331 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "name": "ItemTypeEnumComparisonExp", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "columns and relationships of \"items_counter\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Unconfirmed" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Unvalidated" + "name": "level", + "type": { + "kind": "ENUM", + "name": "CounterLevelEnum", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Member" + "name": "total", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "NotMember" - }, + "name": "type", + "type": { + "kind": "ENUM", + "name": "ItemTypeEnum", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounter", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"items_counter\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Revoked" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "ItemsCounterAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Removed" + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ItemsCounter", + "ofType": null + } + } + } + } } ], - "fields": null, "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "IdentityStatus", + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterAggregate", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "aggregate fields of \"items_counter\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Invited" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "ItemsCounterAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemsCounterSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Pending" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Smith" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "ItemsCounterMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "Excluded" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SmithStatus", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", + "name": "min", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "ItemsCounterMinFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_eq", + "isDeprecated": false, + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ItemsCounterStddevFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ItemsCounterStddevPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gt", + "isDeprecated": false, + "name": "stddevSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ItemsCounterStddevSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gte", + "isDeprecated": false, + "name": "sum", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ItemsCounterSumFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lt", + "isDeprecated": false, + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ItemsCounterVarPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "ItemsCounterVarSampFields", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "ItemsCounterVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterAggregateFields", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lte", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterAvgFields", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"items_counter\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_in", + "name": "_and", "type": { "kind": "LIST", "name": null, @@ -15527,8 +20031,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", "ofType": null } } @@ -15537,7 +20041,17 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_or", "type": { "kind": "LIST", "name": null, @@ -15545,8 +20059,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", "ofType": null } } @@ -15555,47 +20069,59 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "level", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CounterLevelEnumComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "total", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "type", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ItemTypeEnumComparisonExp", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_startsWith", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -15603,19 +20129,34 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterMaxFields", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_endsWith", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -15623,119 +20164,243 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_endsWith", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterMinFields", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"items_counter\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "issuer_isNull", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "issuer", + "name": "level", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "receiver_isNull", + "name": "total", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "receiver", + "name": "type", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ItemsCounterOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"items_counter\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, - "description": null, - "name": "isActive_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "level" }, { - "defaultValue": null, + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "total" + }, + { + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "type" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ItemsCounterSelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "isActive_eq", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterStddevFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "isActive_not_eq", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterStddevPopFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdOn_isNull", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterStddevSampFields", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"items_counter\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterStreamCursorValueInput", + "ofType": null + } + } }, + { + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ItemsCounterStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "createdOn_eq", + "name": "id", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_not_eq", + "name": "level", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "CounterLevelEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_gt", + "name": "total", "type": { "kind": "SCALAR", "name": "Int", @@ -15745,143 +20410,211 @@ { "defaultValue": null, "description": null, - "name": "createdOn_gte", + "name": "type", + "type": { + "kind": "ENUM", + "name": "ItemTypeEnum", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ItemsCounterStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterSumFields", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdOn_lt", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterVarPopFields", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdOn_lte", + "isDeprecated": false, + "name": "total", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterVarSampFields", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdOn_in", + "isDeprecated": false, + "name": "total", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "ItemsCounterVarianceFields", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "createdOn_not_in", + "name": "String", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "JsonbCastExp", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"jsonb\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "expireOn_isNull", + "name": "_cast", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "JsonbCastExp", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "expireOn_eq", + "description": "is the column contained in the given json value", + "name": "_containedIn", "type": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "expireOn_not_eq", + "description": "does the column contain the given json value at the top level", + "name": "_contains", "type": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_gt", + "name": "_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_gte", + "name": "_gt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_lt", + "name": "_gte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "expireOn_lte", + "description": "does the string exist as a top-level key in the column", + "name": "_hasKey", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "expireOn_in", + "description": "do all of these strings exist as top-level keys in the column", + "name": "_hasKeysAll", "type": { "kind": "LIST", "name": null, @@ -15890,7 +20623,25 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "do any of these strings exist as top-level keys in the column", + "name": "_hasKeysAny", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -15899,7 +20650,7 @@ { "defaultValue": null, "description": null, - "name": "expireOn_not_in", + "name": "_in", "type": { "kind": "LIST", "name": null, @@ -15908,7 +20659,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "jsonb", "ofType": null } } @@ -15917,55 +20668,47 @@ { "defaultValue": null, "description": null, - "name": "certHistory_every", + "name": "_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "certHistory_some", + "name": "_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", + "kind": "SCALAR", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "certHistory_none", + "name": "_lte", "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", + "kind": "SCALAR", + "name": "jsonb", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "_neq", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "jsonb", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "OR", + "name": "_nin", "type": { "kind": "LIST", "name": null, @@ -15973,8 +20716,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "SCALAR", + "name": "jsonb", "ofType": null } } @@ -15983,38 +20726,47 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "JsonbComparisonExp", "possibleTypes": null }, { - "description": null, + "description": "columns and relationships of \"membership_event\"", "enumValues": null, - "fields": null, - "inputFields": [ + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_isNull", + "isDeprecated": false, + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_eq", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "event", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Event", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "eventId", "type": { "kind": "SCALAR", "name": "String", @@ -16022,341 +20774,482 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gt", + "isDeprecated": false, + "name": "eventType", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EventTypeEnum", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gte", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "identity", + "type": { + "kind": "OBJECT", + "name": "Identity", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lt", + "isDeprecated": false, + "name": "identityId", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEvent", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"membership_event\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lte", + "isDeprecated": false, + "name": "aggregate", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventAggregateFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_in", + "isDeprecated": false, + "name": "nodes", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } } } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "count", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "kind": "INPUT_OBJECT", + "name": "membershipEventAggregateBoolExpCount", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"membership_event\"", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "MembershipEventAvgFields", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_contains", + "isDeprecated": false, + "name": "max", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventMaxFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_contains", + "isDeprecated": false, + "name": "min", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventMinFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_containsInsensitive", + "isDeprecated": false, + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventStddevFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", + "isDeprecated": false, + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventStddevPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_startsWith", + "isDeprecated": false, + "name": "stddevSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventStddevSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", + "isDeprecated": false, + "name": "sum", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventSumFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_endsWith", + "isDeprecated": false, + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventVarPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_endsWith", + "isDeprecated": false, + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEventVarSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "cert_isNull", + "isDeprecated": false, + "name": "variance", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "MembershipEventVarianceFields", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "cert", + "name": "avg", "type": { "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "MembershipEventAvgOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "event_isNull", + "name": "count", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "event", + "name": "max", "type": { "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "name": "MembershipEventMaxOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_isNull", + "name": "min", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "MembershipEventMinOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_eq", + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventStddevOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_not_eq", + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventStddevPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_gt", + "name": "stddevSamp", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventStddevSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_gte", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventSumOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_lt", + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventVarPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_lte", + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MembershipEventVarSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_in", + "name": "variance", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "eventType_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "MembershipEventVarianceOrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "eventType_eq", + "isDeprecated": false, + "name": "blockNumber", "type": { - "kind": "ENUM", - "name": "EventType", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "eventType_not_eq", + "name": "blockNumber", "type": { "kind": "ENUM", - "name": "EventType", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"membership_event\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "eventType_in", + "name": "_and", "type": { "kind": "LIST", "name": null, @@ -16364,8 +21257,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "EventType", + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", "ofType": null } } @@ -16374,25 +21267,17 @@ { "defaultValue": null, "description": null, - "name": "eventType_not_in", + "name": "_not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventType", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "_or", "type": { "kind": "LIST", "name": null, @@ -16401,7 +21286,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", + "name": "MembershipEventBoolExp", "ofType": null } } @@ -16410,115 +21295,101 @@ { "defaultValue": null, "description": null, - "name": "OR", + "name": "blockNumber", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATION" }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "RENEWAL" + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "REMOVAL" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "EventType", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "eventType", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventTypeEnumComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "identity", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "identityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lt", + "isDeprecated": false, + "name": "eventId", "type": { "kind": "SCALAR", "name": "String", @@ -16526,9 +21397,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lte", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -16536,85 +21409,97 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_in", + "isDeprecated": false, + "name": "identityId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "blockNumber", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "identityId", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_startsWith", + "isDeprecated": false, + "name": "eventId", "type": { "kind": "SCALAR", "name": "String", @@ -16622,9 +21507,11 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", + "isDeprecated": false, + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -16632,338 +21519,383 @@ } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_endsWith", + "isDeprecated": false, + "name": "identityId", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "issuer_isNull", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "issuer", + "name": "id", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "receiver_isNull", + "name": "identityId", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"membership_event\".", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "receiver", + "name": "blockNumber", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_isNull", + "name": "event", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_eq", + "name": "eventId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_not_eq", + "name": "eventType", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_gt", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_gte", + "name": "identity", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_lt", + "name": "identityId", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"membership_event\"", + "enumValues": [ { - "defaultValue": null, - "description": null, - "name": "createdOn_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "blockNumber" }, { - "defaultValue": null, - "description": null, - "name": "createdOn_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "eventId" }, { - "defaultValue": null, - "description": null, - "name": "createdOn_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "eventType" }, { - "defaultValue": null, - "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - } - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "id" }, { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - } - } + "deprecationReason": null, + "description": "column name", + "isDeprecated": false, + "name": "identityId" } ], + "fields": null, + "inputFields": null, "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "ENUM", + "name": "MembershipEventSelectColumn", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddev on columns", "enumValues": null, - "fields": null, - "inputFields": [ + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_isNull", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gte", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, - "description": null, - "name": "id_in", + "description": "Stream column input with initial value", + "name": "initialValue", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "MembershipEventStreamCursorValueInput", + "ofType": null } } }, { "defaultValue": null, - "description": null, - "name": "id_not_in", + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "eventId", "type": { "kind": "SCALAR", "name": "String", @@ -16973,17 +21905,17 @@ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "eventType", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "EventTypeEnum", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "id", "type": { "kind": "SCALAR", "name": "String", @@ -16993,115 +21925,234 @@ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "identityId", "type": { "kind": "SCALAR", "name": "String", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "blockNumber", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventSumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_endsWith", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "identity_isNull", + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "identity", + "name": "blockNumber", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "eventType_isNull", + "isDeprecated": false, + "name": "blockNumber", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"membership_event\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "eventType_eq", + "name": "blockNumber", "type": { "kind": "ENUM", - "name": "EventType", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventVarianceOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"numeric\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "_eq", + "type": { + "kind": "SCALAR", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventType_not_eq", + "name": "_gt", "type": { - "kind": "ENUM", - "name": "EventType", + "kind": "SCALAR", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventType_in", + "name": "_gte", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "numeric", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventType_not_in", + "name": "_in", "type": { "kind": "LIST", "name": null, @@ -17109,8 +22160,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "EventType", + "kind": "SCALAR", + "name": "numeric", "ofType": null } } @@ -17119,7 +22170,7 @@ { "defaultValue": null, "description": null, - "name": "event_isNull", + "name": "_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17129,159 +22180,240 @@ { "defaultValue": null, "description": null, - "name": "event", + "name": "_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_isNull", + "name": "_lte", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_eq", + "name": "_neq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "numeric", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_not_eq", + "name": "_nin", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NumericComparisonExp", + "possibleTypes": null + }, + { + "description": "column ordering options", + "enumValues": [ + { + "deprecationReason": null, + "description": "in ascending order, nulls last", + "isDeprecated": false, + "name": "ASC" }, { - "defaultValue": null, - "description": null, - "name": "blockNumber_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "deprecationReason": null, + "description": "in ascending order, nulls first", + "isDeprecated": false, + "name": "ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, + "description": "in ascending order, nulls last", + "isDeprecated": false, + "name": "ASC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": "in descending order, nulls first", + "isDeprecated": false, + "name": "DESC" + }, + { + "deprecationReason": null, + "description": "in descending order, nulls first", + "isDeprecated": false, + "name": "DESC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": "in descending order, nulls last", + "isDeprecated": false, + "name": "DESC_NULLS_LAST" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "OrderBy", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"smith_cert\"", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, "description": null, - "name": "blockNumber_gte", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "blockNumber_lt", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "issuer", + "type": { + "kind": "OBJECT", + "name": "Identity", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "blockNumber_lte", + "isDeprecated": false, + "name": "issuerId", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "blockNumber_in", + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "receiver", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "OBJECT", + "name": "Identity", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "blockNumber_not_in", + "isDeprecated": false, + "name": "receiverId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCert", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"smith_cert\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "AND", + "isDeprecated": false, + "name": "aggregate", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } - } + "kind": "OBJECT", + "name": "SmithCertAggregateFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "OR", + "isDeprecated": false, + "name": "nodes", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } } } } } ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertAggregate", "possibleTypes": null }, { @@ -17292,578 +22424,805 @@ { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "count", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "smithCertAggregateBoolExpCount", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"smith_cert\"", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_eq", + "isDeprecated": false, + "name": "avg", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertAvgFields", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "count", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gt", + "isDeprecated": false, + "name": "max", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertMaxFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_gte", + "isDeprecated": false, + "name": "min", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertMinFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lt", + "isDeprecated": false, + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertStddevFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_lte", + "isDeprecated": false, + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertStddevPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_in", + "isDeprecated": false, + "name": "stddevSamp", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "SmithCertStddevSampFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_in", + "isDeprecated": false, + "name": "sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "SmithCertSumFields", + "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_contains", + "isDeprecated": false, + "name": "varPop", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertVarPopFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_contains", + "isDeprecated": false, + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertVarSampFields", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_containsInsensitive", + "isDeprecated": false, + "name": "variance", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SmithCertVarianceFields", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "avg", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertAvgOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "count", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "max", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertMaxOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "min", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertMinOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "stddev", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertStddevOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "identity_isNull", + "name": "stddevPop", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmithCertStddevPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "identity", + "name": "stddevSamp", "type": { "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "name": "SmithCertStddevSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "previous_isNull", + "name": "sum", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmithCertSumOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "previous", + "name": "varPop", "type": { "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "name": "SmithCertVarPopOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "next_isNull", + "name": "varSamp", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmithCertVarSampOrderBy", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "next", + "name": "variance", "type": { "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "name": "SmithCertVarianceOrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "blockNumber_isNull", + "isDeprecated": false, + "name": "createdOn", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "blockNumber_eq", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"smith_cert\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "blockNumber_not_eq", + "name": "_and", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "blockNumber_gt", + "name": "_not", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_gte", + "name": "_or", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "blockNumber_lt", + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_lte", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_in", + "name": "issuer", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_not_in", + "name": "issuerId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "receiver", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "OR", + "name": "receiverId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null } } ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "name": "SmithCertBoolExp", "possibleTypes": null }, { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC" - }, + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "issuerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" - }, + "name": "receiverId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp_ASC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp_DESC" + "name": "issuerId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp_ASC_NULLS_FIRST" - }, + "name": "receiverId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp_DESC_NULLS_LAST" + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_ASC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_DESC" + "name": "issuerId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_ASC_NULLS_FIRST" - }, + "name": "receiverId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "from_id_DESC_NULLS_LAST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "to_id_ASC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "to_id_DESC" + "name": "issuerId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "to_id_ASC_NULLS_FIRST" - }, + "name": "receiverId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"smith_cert\".", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "to_id_DESC_NULLS_LAST" + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "amount_ASC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "amount_DESC" + "name": "issuer", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "amount_ASC_NULLS_FIRST" + "name": "issuerId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "amount_DESC_NULLS_LAST" + "name": "receiver", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, + "name": "receiverId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"smith_cert\"", + "enumValues": [ + { + "deprecationReason": null, + "description": "column name", "isDeprecated": false, - "name": "comment_ASC" + "name": "createdOn" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "comment_DESC" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "comment_ASC_NULLS_FIRST" + "name": "issuerId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "comment_DESC_NULLS_LAST" + "name": "receiverId" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "TransferOrderByInput", + "name": "SmithCertSelectColumn", "possibleTypes": null }, { - "description": "Identity", + "description": "aggregate stddev on columns", "enumValues": null, "fields": [ { @@ -17871,1802 +23230,2863 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", + "name": "createdOn", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, - "description": "Identity index", - "isDeprecated": false, - "name": "index", + "defaultValue": null, + "description": null, + "name": "createdOn", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, - "description": "Current account", + "description": null, "isDeprecated": false, - "name": "account", + "name": "createdOn", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, - "description": "Name", - "isDeprecated": false, - "name": "name", + "defaultValue": null, + "description": null, + "name": "createdOn", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, - "description": "Status of the identity", + "description": null, "isDeprecated": false, - "name": "status", + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "IdentityStatus", + "kind": "INPUT_OBJECT", + "name": "SmithCertStreamCursorValueInput", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": "Block number of identity creation event", - "isDeprecated": false, + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, "name": "createdOn", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Event corresponding of identity creation event", - "isDeprecated": false, - "name": "createdIn", + "defaultValue": null, + "description": null, + "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Block number of last identity, changeOwnerKey and membership event", - "isDeprecated": false, - "name": "lastChangeOn", + "defaultValue": null, + "description": null, + "name": "issuerId", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + { + "defaultValue": null, + "description": null, + "name": "receiverId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, - "description": "Smith status of the identity", + "description": null, "isDeprecated": false, - "name": "smithStatus", + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "createdOn", "type": { "kind": "ENUM", - "name": "SmithStatus", + "name": "OrderBy", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertSumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, - "description": "Certifications issued", + "description": null, "isDeprecated": false, - "name": "certIssued", + "name": "createdOn", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCertVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"smith_cert\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "createdOn", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithCertVarianceOrderBy", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "EXCLUDED" }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], "deprecationReason": null, - "description": "Certifications received", + "description": null, "isDeprecated": false, - "name": "certReceived", + "name": "INVITED" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "PENDING" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "SMITH" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SmithStatusEnum", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"SmithStatusEnum\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "_eq", "type": { - "kind": "NON_NULL", + "kind": "ENUM", + "name": "SmithStatusEnum", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_in", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } + "kind": "ENUM", + "name": "SmithStatusEnum", + "ofType": null } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "defaultValue": null, + "description": null, + "name": "_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_neq", + "type": { + "kind": "ENUM", + "name": "SmithStatusEnum", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_nin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithStatusEnum", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "ofType": null - } - } + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "SmithStatusEnumComparisonExp", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "String", + "possibleTypes": null + }, + { + "description": "Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": "is the array contained in the given array value", + "name": "_containedIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { + } + } + }, + { + "defaultValue": null, + "description": "does the array contain the given value", + "name": "_contains", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "_eq", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } - ], - "deprecationReason": null, - "description": "Smith certifications issued", - "isDeprecated": false, - "name": "smithCertIssued", + } + }, + { + "defaultValue": null, + "description": null, + "name": "_gt", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "defaultValue": null, + "description": null, + "name": "_gte", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } } - ], - "deprecationReason": null, - "description": "Smith certifications received", - "isDeprecated": false, - "name": "smithCertReceived", + } + }, + { + "defaultValue": null, + "description": null, + "name": "_isNull", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_lt", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } } }, { - "args": [], - "deprecationReason": null, - "description": "True if the identity is a member", - "isDeprecated": false, - "name": "isMember", + "defaultValue": null, + "description": null, + "name": "_lte", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "the current expireOn value", - "isDeprecated": false, - "name": "expireOn", + "defaultValue": null, + "description": null, + "name": "_neq", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { + "defaultValue": null, + "description": null, + "name": "_nin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MembershipEventOrderByInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "history of the membership changes events", - "isDeprecated": false, - "name": "membershipHistory", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Owner key changes", - "isDeprecated": false, - "name": "ownerKeyChange", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "linked accounts", - "isDeprecated": false, - "name": "linkedAccount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } } } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Identity", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "StringArrayComparisonExp", "possibleTypes": null }, { - "description": "Certification", + "description": "Boolean expression to compare columns of type \"String\". All fields are combined with logical 'AND'.", "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "_eq", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer", + "name": "_gt", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver", + "name": "_gte", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "whether the certification is currently active or not", - "isDeprecated": false, - "name": "isActive", + "defaultValue": null, + "description": "does the column match the given case-insensitive pattern", + "name": "_ilike", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_in", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "the last createdOn value", - "isDeprecated": false, - "name": "createdOn", + "defaultValue": null, + "description": "does the column match the given POSIX regular expression, case insensitive", + "name": "_iregex", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "the current expireOn value", - "isDeprecated": false, - "name": "expireOn", + "defaultValue": null, + "description": null, + "name": "_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertEventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, + "description": "does the column match the given pattern", + "name": "_like", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "certHistory", + "name": "_lt", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "does the column NOT match the given case-insensitive pattern", + "name": "_nilike", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_nin", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertEvent", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } } + }, + { + "defaultValue": null, + "description": "does the column NOT match the given POSIX regular expression, case insensitive", + "name": "_niregex", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "does the column NOT match the given pattern", + "name": "_nlike", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "does the column NOT match the given POSIX regular expression, case sensitive", + "name": "_nregex", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "does the column NOT match the given SQL regular expression", + "name": "_nsimilar", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "does the column match the given POSIX regular expression, case sensitive", + "name": "_regex", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "does the column match the given SQL regular expression", + "name": "_similar", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Cert", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", "possibleTypes": null }, { - "description": "Certification event", + "description": "Boolean expression to compare columns of type \"timestamptz\". All fields are combined with logical 'AND'.", "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "_eq", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "cert", + "name": "_gt", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event", + "name": "_gte", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockNumber", + "name": "_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventType", + "name": "_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventType", - "ofType": null + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_lt", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_lte", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_neq", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "_nin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } } } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertEvent", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TimestamptzComparisonExp", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "columns and relationships of \"transfer\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "amount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "blockNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "from", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" + "name": "fromId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "to", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_isActive_ASC" - }, + "name": "toId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Transfer", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"transfer\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_isActive_DESC" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "TransferAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_isActive_ASC_NULLS_FIRST" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferAggregate", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "cert_isActive_DESC_NULLS_LAST" - }, + "name": "count", + "type": { + "kind": "INPUT_OBJECT", + "name": "transferAggregateBoolExpCount", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferAggregateBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"transfer\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "TransferAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "TransferMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "TransferMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "TransferStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "TransferStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "TransferStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_ASC" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "TransferSumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_DESC" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "TransferVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_ASC_NULLS_FIRST" + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "TransferVarSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_DESC_NULLS_LAST" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "TransferVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_ASC" + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferAvgOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_DESC" + "name": "count", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_ASC_NULLS_FIRST" + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferMaxOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_DESC_NULLS_LAST" + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferMinOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_ASC" + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferStddevOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_DESC" + "name": "stddevPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferStddevPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_ASC_NULLS_FIRST" + "name": "stddevSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferStddevSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_DESC_NULLS_LAST" + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferSumOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_pallet_ASC" + "name": "varPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferVarPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_pallet_DESC" + "name": "varSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferVarSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_pallet_ASC_NULLS_FIRST" - }, + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_pallet_DESC_NULLS_LAST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_name_ASC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_name_DESC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_name_ASC_NULLS_FIRST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"transfer\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_name_DESC_NULLS_LAST" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumericComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventType_ASC" + "name": "comment", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventType_DESC" + "name": "from", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventType_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, + "name": "fromId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventType_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimestamptzComparisonExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "to", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "toId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } } ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "CertEventOrderByInput", + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "fromId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC" + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC_NULLS_FIRST" - }, + "name": "toId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_id_DESC_NULLS_LAST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_index_ASC" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_index_DESC" + "name": "comment", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_index_ASC_NULLS_FIRST" + "name": "fromId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_index_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_name_ASC" + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_name_DESC" - }, + "name": "toId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_status_ASC" + "name": "comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_status_DESC" + "name": "fromId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_status_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_status_DESC_NULLS_LAST" + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_createdOn_ASC" - }, + "name": "toId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_DESC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_DESC_NULLS_LAST" + "name": "comment", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_lastChangeOn_ASC" + "name": "fromId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_lastChangeOn_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_lastChangeOn_ASC_NULLS_FIRST" + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_lastChangeOn_DESC_NULLS_LAST" - }, + "name": "toId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"transfer\".", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_ASC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_DESC" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_ASC_NULLS_FIRST" + "name": "comment", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_DESC_NULLS_LAST" + "name": "from", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_ASC" + "name": "fromId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_ASC_NULLS_FIRST" + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_DESC_NULLS_LAST" + "name": "to", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_expireOn_ASC" - }, + "name": "toId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"transfer\"", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "issuer_expireOn_DESC" + "name": "amount" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "issuer_expireOn_ASC_NULLS_FIRST" + "name": "blockNumber" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "issuer_expireOn_DESC_NULLS_LAST" + "name": "comment" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_id_ASC" + "name": "fromId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_id_DESC" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_id_ASC_NULLS_FIRST" + "name": "timestamp" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_id_DESC_NULLS_LAST" - }, + "name": "toId" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "TransferSelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_index_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_index_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_name_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_name_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferStddevPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_status_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_status_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_status_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_status_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_ASC" + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferStreamCursorValueInput", + "ofType": null + } + } }, { - "deprecationReason": null, + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_DESC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_DESC_NULLS_LAST" + "name": "comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_ASC" + "name": "fromId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_ASC_NULLS_FIRST" + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_DESC_NULLS_LAST" - }, + "name": "toId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_smithStatus_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_smithStatus_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferSumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_smithStatus_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_smithStatus_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferSumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_isMember_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_isMember_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_isMember_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_isMember_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_expireOn_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_expireOn_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_expireOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_expireOn_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isActive_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isActive_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isActive_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "isActive_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdOn_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdOn_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdOn_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "createdOn_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "TransferVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"transfer\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "expireOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "expireOn_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } } ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "CertOrderByInput", + "kind": "INPUT_OBJECT", + "name": "TransferVarianceOrderBy", "possibleTypes": null }, { - "description": "Smith certification", + "description": "columns and relationships of \"ud_history\"", "enumValues": null, "fields": [ { @@ -19674,13 +26094,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", + "name": "amount", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -19690,13 +26110,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer", + "name": "blockNumber", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Identity", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -19706,29 +26126,53 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver", + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Identity", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, + { + "args": [], + "deprecationReason": null, + "description": "An object relationship", + "isDeprecated": false, + "name": "identity", + "type": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + }, { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn", + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "timestamp", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "timestamptz", "ofType": null } } @@ -19737,502 +26181,1046 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "SmithCert", + "name": "UdHistory", "possibleTypes": null }, { "description": null, - "enumValues": [ + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "UdHistoryAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryAggregate", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"ud_history\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "UdHistoryAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "UdHistoryMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "UdHistoryMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC_NULLS_FIRST" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "UdHistoryStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC_NULLS_LAST" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "UdHistoryStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_ASC" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "UdHistoryStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_DESC" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "UdHistorySumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_ASC_NULLS_FIRST" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "UdHistoryVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_DESC_NULLS_LAST" - }, + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "UdHistoryVarSampFields", + "ofType": null + } + }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_ASC" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "UdHistoryVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryAggregateFields", + "possibleTypes": null + }, + { + "description": "order by aggregate values of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_name_DESC" + "name": "avg", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryAvgOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_name_ASC_NULLS_FIRST" + "name": "count", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_name_DESC_NULLS_LAST" + "name": "max", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryMaxOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_status_ASC" + "name": "min", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryMinOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_status_DESC" + "name": "stddev", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryStddevOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_status_ASC_NULLS_FIRST" + "name": "stddevPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryStddevPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_status_DESC_NULLS_LAST" + "name": "stddevSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryStddevSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_ASC" + "name": "sum", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistorySumOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_DESC" + "name": "varPop", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryVarPopOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_ASC_NULLS_FIRST" + "name": "varSamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryVarSampOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_createdOn_DESC_NULLS_LAST" - }, + "name": "variance", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryVarianceOrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryAggregateOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_lastChangeOn_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_lastChangeOn_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryAvgFields", + "possibleTypes": null + }, + { + "description": "order by avg() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_lastChangeOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_lastChangeOn_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryAvgOrderBy", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"ud_history\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_ASC" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_DESC" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_ASC_NULLS_FIRST" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_smithStatus_DESC_NULLS_LAST" + "name": "amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_ASC" + "name": "blockNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_DESC" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_ASC_NULLS_FIRST" + "name": "identity", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_isMember_DESC_NULLS_LAST" + "name": "identityId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "issuer_expireOn_ASC" - }, + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimestamptzComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_expireOn_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "issuer_expireOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_expireOn_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_ASC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_DESC" + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_ASC_NULLS_FIRST" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryMaxFields", + "possibleTypes": null + }, + { + "description": "order by max() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_id_DESC_NULLS_LAST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_index_ASC" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_index_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_index_ASC_NULLS_FIRST" + "name": "identityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_index_DESC_NULLS_LAST" - }, + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryMaxOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC_NULLS_LAST" + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_status_ASC" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryMinFields", + "possibleTypes": null + }, + { + "description": "order by min() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_status_DESC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_status_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_status_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_ASC" + "name": "identityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_DESC" - }, + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryMinOrderBy", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"ud_history\".", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_createdOn_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_ASC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_DESC" + "name": "identity", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_ASC_NULLS_FIRST" + "name": "identityId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_lastChangeOn_DESC_NULLS_LAST" - }, + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"ud_history\"", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_smithStatus_ASC" + "name": "amount" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_smithStatus_DESC" + "name": "blockNumber" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_smithStatus_ASC_NULLS_FIRST" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_smithStatus_DESC_NULLS_LAST" + "name": "identityId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "receiver_isMember_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_isMember_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_isMember_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "receiver_isMember_DESC_NULLS_LAST" - }, + "name": "timestamp" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_expireOn_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_expireOn_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryStddevFields", + "possibleTypes": null + }, + { + "description": "order by stddev() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_expireOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "receiver_expireOn_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryStddevOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryStddevPopFields", + "possibleTypes": null + }, + { + "description": "order by stddevPop() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "createdOn_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "createdOn_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } } ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "SmithCertOrderByInput", + "kind": "INPUT_OBJECT", + "name": "UdHistoryStddevPopOrderBy", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddevSamp on columns", "enumValues": null, "fields": [ { @@ -20240,15 +27228,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", + "name": "amount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -20256,495 +27240,1084 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity", + "name": "blockNumber", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryStddevSampFields", + "possibleTypes": null + }, + { + "description": "order by stddevSamp() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventType", + "name": "amount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventType", - "ofType": null - } + "kind": "ENUM", + "name": "OrderBy", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event", + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryStddevSampOrderBy", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Event", + "kind": "INPUT_OBJECT", + "name": "UdHistoryStreamCursorValueInput", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "blockNumber", + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MembershipEvent", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryStreamCursorInput", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "identityId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_DESC" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistorySumFields", + "possibleTypes": null + }, + { + "description": "order by sum() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_index_ASC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_index_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistorySumOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryVarPopFields", + "possibleTypes": null + }, + { + "description": "order by varPop() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_name_ASC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_name_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryVarPopOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryVarSampFields", + "possibleTypes": null + }, + { + "description": "order by varSamp() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_status_ASC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_status_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryVarSampOrderBy", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_DESC_NULLS_LAST" - }, + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdHistoryVarianceFields", + "possibleTypes": null + }, + { + "description": "order by variance() on columns of table \"ud_history\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_createdOn_ASC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_createdOn_DESC" - }, + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdHistoryVarianceOrderBy", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"ud_reeval\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "identity_createdOn_DESC_NULLS_LAST" + "name": "event", + "type": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_ASC" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_DESC" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_lastChangeOn_DESC_NULLS_LAST" + "name": "membersCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_ASC" + "name": "monetaryMass", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_DESC" + "name": "newUdAmount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_ASC_NULLS_FIRST" - }, + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReeval", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"ud_reeval\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_DESC_NULLS_LAST" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "UdReevalAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_isMember_ASC" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdReeval", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalAggregate", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"ud_reeval\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_isMember_DESC" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "UdReevalAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdReevalSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_isMember_ASC_NULLS_FIRST" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_isMember_DESC_NULLS_LAST" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "UdReevalMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_ASC" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "UdReevalMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_DESC" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "UdReevalStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_ASC_NULLS_FIRST" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "UdReevalStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_DESC_NULLS_LAST" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "UdReevalStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "eventType_ASC" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "UdReevalSumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "eventType_DESC" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "UdReevalVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "eventType_ASC_NULLS_FIRST" + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "UdReevalVarSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "eventType_DESC_NULLS_LAST" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "UdReevalVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalAggregateFields", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_id_DESC_NULLS_LAST" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalAvgFields", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"ud_reeval\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_ASC" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_DESC" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_ASC_NULLS_FIRST" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_index_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_ASC" + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_DESC" + "name": "eventId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_phase_DESC_NULLS_LAST" + "name": "membersCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_pallet_ASC" + "name": "monetaryMass", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumericComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_pallet_DESC" + "name": "newUdAmount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "event_pallet_ASC_NULLS_FIRST" - }, + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimestamptzComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_pallet_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_name_ASC" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_name_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_name_ASC_NULLS_FIRST" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "event_name_DESC_NULLS_LAST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalMaxFields", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "MembershipEventOrderByInput", - "possibleTypes": null - }, - { - "description": "owner key change", - "enumValues": null, - "fields": [ + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, { "args": [], "deprecationReason": null, @@ -20752,13 +28325,9 @@ "isDeprecated": false, "name": "id", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { @@ -20766,15 +28335,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity", + "name": "membersCount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { @@ -20782,15 +28347,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous", + "name": "monetaryMass", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "numeric", + "ofType": null } }, { @@ -20798,15 +28359,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next", + "name": "newUdAmount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, { @@ -20814,816 +28371,1579 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", + "name": "timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "ChangeOwnerKey", + "name": "UdReevalMinFields", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "Ordering options when selecting data from \"ud_reeval\".", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC" + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "eventId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_id_ASC" + "name": "membersCount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_id_DESC" + "name": "monetaryMass", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" + "name": "newUdAmount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_index_ASC" - }, + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdReevalOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"ud_reeval\"", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_index_DESC" + "name": "blockNumber" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" + "name": "eventId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_name_ASC" + "name": "membersCount" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_name_DESC" + "name": "monetaryMass" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" + "name": "newUdAmount" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" - }, + "name": "timestamp" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "UdReevalSelectColumn", + "possibleTypes": null + }, + { + "description": "aggregate stddev on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_DESC_NULLS_LAST" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalStddevFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_DESC_NULLS_LAST" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalStddevPopFields", + "possibleTypes": null + }, + { + "description": "aggregate stddevSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_DESC_NULLS_LAST" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalStddevSampFields", + "possibleTypes": null + }, + { + "description": "Streaming cursor of the table \"ud_reeval\"", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_smithStatus_ASC" + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalStreamCursorValueInput", + "ofType": null + } + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_smithStatus_DESC" - }, + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", + "type": { + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdReevalStreamCursorInput", + "possibleTypes": null + }, + { + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_smithStatus_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_smithStatus_DESC_NULLS_LAST" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_ASC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_DESC_NULLS_LAST" + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_expireOn_ASC" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UdReevalStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_DESC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_ASC_NULLS_FIRST" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_expireOn_DESC_NULLS_LAST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous_id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "previous_id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "previous_id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "previous_id_DESC_NULLS_LAST" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalSumFields", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_DESC_NULLS_LAST" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalVarPopFields", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } } ], - "fields": null, "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalVarSampFields", "possibleTypes": null }, { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC" - }, + "name": "newUdAmount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UdReevalVarianceFields", + "possibleTypes": null + }, + { + "description": "columns and relationships of \"universal_dividend\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_DESC" + "name": "amount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "An object relationship", "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" + "name": "event", + "type": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" + "name": "membersCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" + "name": "monetaryMass", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC" - }, + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividend", + "possibleTypes": null + }, + { + "description": "aggregated selection of \"universal_dividend\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC" + "name": "aggregate", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendAggregateFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" - }, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UniversalDividend", + "ofType": null + } + } + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendAggregate", + "possibleTypes": null + }, + { + "description": "aggregate fields of \"universal_dividend\"", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_status_ASC" + "name": "avg", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendAvgFields", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "columns", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UniversalDividendSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_DESC" + "name": "count", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_ASC_NULLS_FIRST" + "name": "max", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendMaxFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_status_DESC_NULLS_LAST" + "name": "min", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendMinFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_ASC" + "name": "stddev", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendStddevFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_DESC" + "name": "stddevPop", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendStddevPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_ASC_NULLS_FIRST" + "name": "stddevSamp", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendStddevSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_createdOn_DESC_NULLS_LAST" + "name": "sum", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendSumFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_ASC" + "name": "varPop", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendVarPopFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_DESC" + "name": "varSamp", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendVarSampFields", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_ASC_NULLS_FIRST" - }, + "name": "variance", + "type": { + "kind": "OBJECT", + "name": "UniversalDividendVarianceFields", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendAggregateFields", + "possibleTypes": null + }, + { + "description": "aggregate avg on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_lastChangeOn_DESC_NULLS_LAST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_smithStatus_ASC_NULLS_FIRST" - }, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendAvgFields", + "possibleTypes": null + }, + { + "description": "Boolean expression to filter rows from the table \"universal_dividend\". All fields are combined with a logical 'AND'.", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_smithStatus_DESC_NULLS_LAST" + "name": "_and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_ASC" + "name": "_not", + "type": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_DESC" + "name": "_or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_isMember_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_expireOn_ASC" + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_expireOn_DESC" + "name": "eventId", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_expireOn_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "identity_expireOn_DESC_NULLS_LAST" + "name": "membersCount", + "type": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_id_ASC" + "name": "monetaryMass", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumericComparisonExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_id_DESC" - }, + "name": "timestamp", + "type": { + "kind": "INPUT_OBJECT", + "name": "TimestamptzComparisonExp", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "possibleTypes": null + }, + { + "description": "aggregate max on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_id_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_id_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_index_ASC" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_index_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "linkedIdentity_index_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "linkedIdentity_index_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "linkedIdentity_name_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "linkedIdentity_name_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "linkedIdentity_name_ASC_NULLS_FIRST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_name_DESC_NULLS_LAST" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_status_ASC" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_status_DESC" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendMaxFields", + "possibleTypes": null + }, + { + "description": "aggregate min on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_status_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_status_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_createdOn_ASC" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_createdOn_DESC" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_createdOn_ASC_NULLS_FIRST" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_createdOn_DESC_NULLS_LAST" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_lastChangeOn_ASC" - }, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendMinFields", + "possibleTypes": null + }, + { + "description": "Ordering options when selecting data from \"universal_dividend\".", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_lastChangeOn_DESC" + "name": "amount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_lastChangeOn_ASC_NULLS_FIRST" + "name": "blockNumber", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_lastChangeOn_DESC_NULLS_LAST" + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_smithStatus_ASC" + "name": "eventId", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_smithStatus_DESC" + "name": "id", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_smithStatus_ASC_NULLS_FIRST" + "name": "membersCount", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_smithStatus_DESC_NULLS_LAST" + "name": "monetaryMass", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "linkedIdentity_isMember_ASC" - }, + "name": "timestamp", + "type": { + "kind": "ENUM", + "name": "OrderBy", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UniversalDividendOrderBy", + "possibleTypes": null + }, + { + "description": "select columns of table \"universal_dividend\"", + "enumValues": [ { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_isMember_DESC" + "name": "amount" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_isMember_ASC_NULLS_FIRST" + "name": "blockNumber" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_isMember_DESC_NULLS_LAST" + "name": "eventId" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_expireOn_ASC" + "name": "id" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_expireOn_DESC" + "name": "membersCount" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_expireOn_ASC_NULLS_FIRST" + "name": "monetaryMass" }, { "deprecationReason": null, - "description": null, + "description": "column name", "isDeprecated": false, - "name": "linkedIdentity_expireOn_DESC_NULLS_LAST" + "name": "timestamp" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "AccountOrderByInput", + "name": "UniversalDividendSelectColumn", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddev on columns", "enumValues": null, "fields": [ { @@ -21631,23 +29951,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "amount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -21655,15 +29963,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "blockNumber", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -21671,26 +29975,34 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "totalCount", + "name": "membersCount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "AccountsConnection", + "name": "UniversalDividendStddevFields", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddevPop on columns", "enumValues": null, "fields": [ { @@ -21698,15 +30010,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "amount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -21714,26 +30022,46 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", + "name": "blockNumber", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "AccountEdge", + "name": "UniversalDividendStddevPopFields", "possibleTypes": null }, { - "description": null, + "description": "aggregate stddevSamp on columns", "enumValues": null, "fields": [ { @@ -21741,23 +30069,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "amount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransferEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -21765,15 +30081,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "blockNumber", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } }, { @@ -21781,436 +30093,5424 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "totalCount", + "name": "membersCount", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "TransfersConnection", + "name": "UniversalDividendStddevSampFields", "possibleTypes": null }, { - "description": null, + "description": "Streaming cursor of the table \"universal_dividend\"", "enumValues": null, - "fields": [ + "fields": null, + "inputFields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "node", + "defaultValue": null, + "description": "Stream column input with initial value", + "name": "initialValue", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Transfer", + "kind": "INPUT_OBJECT", + "name": "UniversalDividendStreamCursorValueInput", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cursor", + "defaultValue": null, + "description": "cursor ordering", + "name": "ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "CursorOrdering", + "ofType": null } } ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransferEdge", + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UniversalDividendStreamCursorInput", "possibleTypes": null }, { - "description": null, - "enumValues": [ + "description": "Initial value of the column from where the streaming should start", + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "eventId", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index_ASC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index_DESC" + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } }, { + "defaultValue": null, + "description": null, + "name": "timestamp", + "type": { + "kind": "SCALAR", + "name": "timestamptz", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "UniversalDividendStreamCursorValueInput", + "possibleTypes": null + }, + { + "description": "aggregate sum on columns", + "enumValues": null, + "fields": [ + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_ASC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_DESC" - }, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "numeric", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendSumFields", + "possibleTypes": null + }, + { + "description": "aggregate varPop on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_ASC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_DESC" - }, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendVarPopFields", + "possibleTypes": null + }, + { + "description": "aggregate varSamp on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_ASC_NULLS_FIRST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_DESC_NULLS_LAST" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "status_ASC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "status_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "status_ASC_NULLS_FIRST" - }, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendVarSampFields", + "possibleTypes": null + }, + { + "description": "aggregate variance on columns", + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "status_DESC_NULLS_LAST" + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC" + "name": "blockNumber", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC" + "name": "membersCount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC_NULLS_FIRST" - }, + "name": "monetaryMass", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "UniversalDividendVarianceFields", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC_NULLS_LAST" + "name": "args", + "type": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_id_ASC" + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_id_DESC" + "name": "isRepeatable", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_id_ASC_NULLS_FIRST" + "name": "locations", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_id_DESC_NULLS_LAST" - }, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Directive", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_index_ASC" + "name": "deprecationReason", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_index_DESC" + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_index_ASC_NULLS_FIRST" + "name": "isDeprecated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_index_DESC_NULLS_LAST" - }, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__EnumValue", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_phase_ASC" + "name": "args", + "type": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_phase_DESC" + "name": "deprecationReason", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_phase_ASC_NULLS_FIRST" + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_phase_DESC_NULLS_LAST" + "name": "isDeprecated", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_pallet_ASC" + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_pallet_DESC" - }, + "name": "type", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Field", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_pallet_ASC_NULLS_FIRST" + "name": "defaultValue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_pallet_DESC_NULLS_LAST" + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__InputValue", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "directives", + "type": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "mutationType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "queryType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "subscriptionType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "types", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Schema", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": "false", + "description": null, + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "enumValues", + "type": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } }, { + "args": [ + { + "defaultValue": "false", + "description": null, + "name": "includeDeprecated", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_name_ASC" + "name": "fields", + "type": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_name_DESC" + "name": "inputFields", + "type": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_name_ASC_NULLS_FIRST" + "name": "interfaces", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdIn_name_DESC_NULLS_LAST" + "name": "kind", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "lastChangeOn_ASC" + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "lastChangeOn_DESC" + "name": "ofType", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "possibleTypes", + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "__Type", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "lastChangeOn_ASC_NULLS_FIRST" + "name": "ENUM" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "lastChangeOn_DESC_NULLS_LAST" + "name": "INPUT_OBJECT" }, { "deprecationReason": null, - "description": null, + "description": null, + "isDeprecated": false, + "name": "INTERFACE" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "LIST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "NON_NULL" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "OBJECT" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "SCALAR" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "UNION" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "__TypeKind", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "accountAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "bytea", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumnCallAggregateBoolExpBool_andArgumentsColumns", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "callAggregateBoolExpBool_and", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumnCallAggregateBoolExpBool_orArgumentsColumns", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "callAggregateBoolExpBool_or", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "callAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumnCertAggregateBoolExpBool_andArgumentsColumns", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "certAggregateBoolExpBool_and", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumnCertAggregateBoolExpBool_orArgumentsColumns", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "certAggregateBoolExpBool_or", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "certAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "certEventAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "changeOwnerKeyAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "eventAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_andArgumentsColumns", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "extrinsicAggregateBoolExpBool_and", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumnExtrinsicAggregateBoolExpBool_orArgumentsColumns", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "extrinsicAggregateBoolExpBool_or", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "extrinsicAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "identity_row", + "type": { + "kind": "SCALAR", + "name": "identity_scalar", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "getUdHistoryArgs", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "identity_scalar", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "jsonb", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "membershipEventAggregateBoolExpCount", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "numeric", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"account\"", + "isDeprecated": false, + "name": "account", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"account\"", + "isDeprecated": false, + "name": "accountAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AccountAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"account\" using primary key columns", + "isDeprecated": false, + "name": "accountByPk", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BlockSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"block\"", + "isDeprecated": false, + "name": "block", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BlockSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"block\"", + "isDeprecated": false, + "name": "blockAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BlockAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"block\" using primary key columns", + "isDeprecated": false, + "name": "blockByPk", + "type": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"call\"", + "isDeprecated": false, + "name": "call", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"call\"", + "isDeprecated": false, + "name": "callAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CallAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"call\" using primary key columns", + "isDeprecated": false, + "name": "callByPk", + "type": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"cert\"", + "isDeprecated": false, + "name": "cert", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"cert\"", + "isDeprecated": false, + "name": "certAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"cert\" using primary key columns", + "isDeprecated": false, + "name": "certByPk", + "type": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"cert_event\"", + "isDeprecated": false, + "name": "certEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"cert_event\"", + "isDeprecated": false, + "name": "certEventAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEventAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"cert_event\" using primary key columns", + "isDeprecated": false, + "name": "certEventByPk", + "type": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"change_owner_key\"", + "isDeprecated": false, + "name": "changeOwnerKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"change_owner_key\"", + "isDeprecated": false, + "name": "changeOwnerKeyAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"change_owner_key\" using primary key columns", + "isDeprecated": false, + "name": "changeOwnerKeyByPk", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"event\"", + "isDeprecated": false, + "name": "event", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"event\"", + "isDeprecated": false, + "name": "eventAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"event\" using primary key columns", + "isDeprecated": false, + "name": "eventByPk", + "type": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"extrinsic\"", + "isDeprecated": false, + "name": "extrinsic", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Extrinsic", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"extrinsic\"", + "isDeprecated": false, + "name": "extrinsicAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExtrinsicAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"extrinsic\" using primary key columns", + "isDeprecated": false, + "name": "extrinsicByPk", + "type": { + "kind": "OBJECT", + "name": "Extrinsic", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "input parameters for function \"getUdHistory\"", + "name": "args", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "getUdHistoryArgs", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "execute function \"get_ud_history\" which returns \"ud_history\"", + "isDeprecated": false, + "name": "getUdHistory", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "input parameters for function \"getUdHistoryAggregate\"", + "name": "args", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "getUdHistoryArgs", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "execute function \"get_ud_history\" and query aggregates on result of table type \"ud_history\"", + "isDeprecated": false, + "name": "getUdHistoryAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistoryAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentitySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"identity\"", + "isDeprecated": false, + "name": "identity", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentitySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"identity\"", + "isDeprecated": false, + "name": "identityAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IdentityAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"identity\" using primary key columns", + "isDeprecated": false, + "name": "identityByPk", + "type": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemsCounterSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"items_counter\"", + "isDeprecated": false, + "name": "itemsCounter", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ItemsCounter", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemsCounterSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"items_counter\"", + "isDeprecated": false, + "name": "itemsCounterAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ItemsCounterAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"items_counter\" using primary key columns", + "isDeprecated": false, + "name": "itemsCounterByPk", + "type": { + "kind": "OBJECT", + "name": "ItemsCounter", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"membership_event\"", + "isDeprecated": false, + "name": "membershipEvent", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"membership_event\"", + "isDeprecated": false, + "name": "membershipEventAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEventAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"membership_event\" using primary key columns", + "isDeprecated": false, + "name": "membershipEventByPk", + "type": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"smith_cert\"", + "isDeprecated": false, + "name": "smithCert", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"smith_cert\"", + "isDeprecated": false, + "name": "smithCertAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCertAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"smith_cert\" using primary key columns", + "isDeprecated": false, + "name": "smithCertByPk", + "type": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"transfer\"", + "isDeprecated": false, + "name": "transfer", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"transfer\"", + "isDeprecated": false, + "name": "transferAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransferAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"transfer\" using primary key columns", + "isDeprecated": false, + "name": "transferByPk", + "type": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"ud_history\"", + "isDeprecated": false, + "name": "udHistory", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "fetch aggregated fields from the table: \"ud_history\"", "isDeprecated": false, - "name": "smithStatus_ASC" + "name": "udHistoryAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistoryAggregate", + "ofType": null + } + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"ud_history\" using primary key columns", "isDeprecated": false, - "name": "smithStatus_DESC" + "name": "udHistoryByPk", + "type": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdReevalSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"ud_reeval\"", "isDeprecated": false, - "name": "smithStatus_ASC_NULLS_FIRST" + "name": "udReeval", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdReeval", + "ofType": null + } + } + } + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdReevalSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"ud_reeval\"", "isDeprecated": false, - "name": "smithStatus_DESC_NULLS_LAST" + "name": "udReevalAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdReevalAggregate", + "ofType": null + } + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"ud_reeval\" using primary key columns", "isDeprecated": false, - "name": "isMember_ASC" + "name": "udReevalByPk", + "type": { + "kind": "OBJECT", + "name": "UdReeval", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UniversalDividendSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"universal_dividend\"", "isDeprecated": false, - "name": "isMember_DESC" + "name": "universalDividend", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UniversalDividend", + "ofType": null + } + } + } + } }, { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UniversalDividendSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"universal_dividend\"", "isDeprecated": false, - "name": "isMember_ASC_NULLS_FIRST" + "name": "universalDividendAggregate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UniversalDividendAggregate", + "ofType": null + } + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"universal_dividend\" using primary key columns", "isDeprecated": false, - "name": "isMember_DESC_NULLS_LAST" - }, + "name": "universalDividendByPk", + "type": { + "kind": "OBJECT", + "name": "UniversalDividend", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "query_root", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "expireOn_ASC" + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "expireOn_DESC" + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "expireOn_ASC_NULLS_FIRST" + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "expireOn_DESC_NULLS_LAST" + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } } ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "IdentityOrderByInput", + "kind": "INPUT_OBJECT", + "name": "smithCertAggregateBoolExpCount", "possibleTypes": null }, { @@ -22218,11 +35518,78 @@ "enumValues": null, "fields": [ { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"account\"", "isDeprecated": false, - "name": "edges", + "name": "account", "type": { "kind": "NON_NULL", "name": null, @@ -22233,106 +35600,264 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "IdentityEdge", - "ofType": null + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountOrderBy", + "ofType": null + } } } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } } - } - }, - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"account\"", "isDeprecated": false, - "name": "pageInfo", + "name": "accountAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "AccountAggregate", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "IdentitiesConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"account\" using primary key columns", "isDeprecated": false, - "name": "node", + "name": "accountByPk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } + "kind": "OBJECT", + "name": "Account", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AccountStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"account\"", "isDeprecated": false, - "name": "cursor", + "name": "accountStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "IdentityEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BlockSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"block\"", "isDeprecated": false, - "name": "edges", + "name": "block", "type": { "kind": "NON_NULL", "name": null, @@ -22344,105 +35869,263 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeOwnerKeyEdge", + "name": "Block", "ofType": null } } } - } - }, - { - "args": [], + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BlockSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"block\"", "isDeprecated": false, - "name": "pageInfo", + "name": "blockAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "BlockAggregate", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ChangeOwnerKeysConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"block\" using primary key columns", "isDeprecated": false, - "name": "node", + "name": "blockByPk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } + "kind": "OBJECT", + "name": "Block", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BlockStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"block\"", "isDeprecated": false, - "name": "cursor", + "name": "blockStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } + } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ChangeOwnerKeyEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"call\"", "isDeprecated": false, - "name": "edges", + "name": "call", "type": { "kind": "NON_NULL", "name": null, @@ -22454,105 +36137,172 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertEdge", + "name": "Call", "ofType": null } } } - } - }, - { - "args": [], + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"call\"", "isDeprecated": false, - "name": "pageInfo", + "name": "callAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "CallAggregate", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"call\" using primary key columns", "isDeprecated": false, - "name": "node", + "name": "callByPk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } + "kind": "OBJECT", + "name": "Call", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallBoolExp", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"call\"", "isDeprecated": false, - "name": "edges", + "name": "callStream", "type": { "kind": "NON_NULL", "name": null, @@ -22564,7 +36314,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertEventEdge", + "name": "Call", "ofType": null } } @@ -22572,97 +36322,279 @@ } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"cert\"", "isDeprecated": false, - "name": "pageInfo", + "name": "cert", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } + } } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertEventsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"cert\"", "isDeprecated": false, - "name": "node", + "name": "certAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CertEvent", + "name": "CertAggregate", "ofType": null } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"cert\" using primary key columns", "isDeprecated": false, - "name": "cursor", + "name": "certByPk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Cert", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertEventEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"cert_event\"", "isDeprecated": false, - "name": "edges", + "name": "certEvent", "type": { "kind": "NON_NULL", "name": null, @@ -22674,7 +36606,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertEdge", + "name": "CertEvent", "ofType": null } } @@ -22682,216 +36614,383 @@ } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "node", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"cert_event\"", "isDeprecated": false, - "name": "edges", + "name": "certEventAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "kind": "OBJECT", + "name": "CertEventAggregate", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "MembershipEventEdge", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - } - }, - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"cert_event\" using primary key columns", "isDeprecated": false, - "name": "pageInfo", + "name": "certEventByPk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"cert_event\"", "isDeprecated": false, - "name": "totalCount", + "name": "certEventStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } + } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MembershipEventsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"cert\"", "isDeprecated": false, - "name": "node", + "name": "certStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"change_owner_key\"", "isDeprecated": false, - "name": "cursor", + "name": "changeOwnerKey", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MembershipEventEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { "args": [ { "defaultValue": null, - "description": null, - "name": "where", + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -22900,8 +36999,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "BlockOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyOrderBy", "ofType": null } } @@ -22909,44 +37008,26 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"change_owner_key\"", "isDeprecated": false, - "name": "blocks", + "name": "changeOwnerKeyAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ChangeOwnerKeyAggregate", + "ofType": null } } }, @@ -22968,12 +37049,12 @@ } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"change_owner_key\" using primary key columns", "isDeprecated": false, - "name": "blockById", + "name": "changeOwnerKeyByPk", "type": { "kind": "OBJECT", - "name": "Block", + "name": "ChangeOwnerKey", "ofType": null } }, @@ -22981,18 +37062,75 @@ "args": [ { "defaultValue": null, - "description": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "name": "ChangeOwnerKeyBoolExp", "ofType": null } - }, + } + ], + "deprecationReason": null, + "description": "fetch data from the table in a streaming manner: \"change_owner_key\"", + "isDeprecated": false, + "name": "changeOwnerKeyStream", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + } + } + } + }, + { + "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -23001,7 +37139,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "ExtrinsicOrderByInput", + "name": "EventSelectColumn", "ofType": null } } @@ -23009,8 +37147,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -23019,19 +37157,47 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"event\"", "isDeprecated": false, - "name": "extrinsics", + "name": "event", "type": { "kind": "NON_NULL", "name": null, @@ -23043,7 +37209,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Extrinsic", + "name": "Event", "ofType": null } } @@ -23054,44 +37220,45 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventSelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "extrinsicById", - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "limit the number of rows returned", + "name": "limit", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -23100,8 +37267,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", + "kind": "INPUT_OBJECT", + "name": "EventOrderBy", "ofType": null } } @@ -23109,44 +37276,26 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EventBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"event\"", "isDeprecated": false, - "name": "calls", + "name": "eventAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - } + "kind": "OBJECT", + "name": "EventAggregate", + "ofType": null } } }, @@ -23168,12 +37317,12 @@ } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"event\" using primary key columns", "isDeprecated": false, - "name": "callById", + "name": "eventByPk", "type": { "kind": "OBJECT", - "name": "Call", + "name": "Event", "ofType": null } }, @@ -23181,18 +37330,75 @@ "args": [ { "defaultValue": null, - "description": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EventStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "name": "EventBoolExp", "ofType": null } - }, + } + ], + "deprecationReason": null, + "description": "fetch data from the table in a streaming manner: \"event\"", + "isDeprecated": false, + "name": "eventStream", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } + } + } + }, + { + "args": [ { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -23201,7 +37407,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "EventOrderByInput", + "name": "ExtrinsicSelectColumn", "ofType": null } } @@ -23209,8 +37415,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -23219,19 +37425,47 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"extrinsic\"", "isDeprecated": false, - "name": "events", + "name": "extrinsic", "type": { "kind": "NON_NULL", "name": null, @@ -23243,7 +37477,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Event", + "name": "Extrinsic", "ofType": null } } @@ -23254,44 +37488,45 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicSelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "eventById", - "type": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "limit the number of rows returned", + "name": "limit", "type": { - "kind": "INPUT_OBJECT", - "name": "ItemsCounterWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -23300,8 +37535,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ItemsCounterOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicOrderBy", "ofType": null } } @@ -23309,44 +37544,26 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"extrinsic\"", "isDeprecated": false, - "name": "itemsCounters", + "name": "extrinsicAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ItemsCounter", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ExtrinsicAggregate", + "ofType": null } } }, @@ -23368,12 +37585,12 @@ } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"extrinsic\" using primary key columns", "isDeprecated": false, - "name": "itemsCounterById", + "name": "extrinsicByPk", "type": { "kind": "OBJECT", - "name": "ItemsCounter", + "name": "Extrinsic", "ofType": null } }, @@ -23381,27 +37598,31 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "where", + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "cursor to stream the results returned by the query", + "name": "cursor", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "AccountOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicStreamCursorInput", "ofType": null } } @@ -23409,29 +37630,19 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"extrinsic\"", "isDeprecated": false, - "name": "accounts", + "name": "extrinsicStream", "type": { "kind": "NON_NULL", "name": null, @@ -23443,7 +37654,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Account", + "name": "Extrinsic", "ofType": null } } @@ -23454,45 +37665,22 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "input parameters for function \"getUdHistory\"", + "name": "args", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "getUdHistoryArgs", "ofType": null } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "accountById", - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TransferWhereInput", - "ofType": null - } }, { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "distinct select on columns", + "name": "distinctOn", "type": { "kind": "LIST", "name": null, @@ -23501,7 +37689,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "TransferOrderByInput", + "name": "UdHistorySelectColumn", "ofType": null } } @@ -23509,8 +37697,8 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", @@ -23519,19 +37707,47 @@ }, { "defaultValue": null, - "description": null, - "name": "limit", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } } ], "deprecationReason": null, - "description": null, + "description": "execute function \"get_ud_history\" which returns \"ud_history\"", "isDeprecated": false, - "name": "transfers", + "name": "getUdHistory", "type": { "kind": "NON_NULL", "name": null, @@ -23543,7 +37759,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Transfer", + "name": "UdHistory", "ofType": null } } @@ -23554,44 +37770,59 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "input parameters for function \"getUdHistoryAggregate\"", + "name": "args", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "getUdHistoryArgs", "ofType": null } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transferById", - "type": { - "kind": "OBJECT", - "name": "Transfer", - "ofType": null - } - }, - { - "args": [ + }, + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -23600,8 +37831,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "IdentityOrderByInput", + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", "ofType": null } } @@ -23609,44 +37840,26 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "execute function \"get_ud_history\" and query aggregates on result of table type \"ud_history\"", "isDeprecated": false, - "name": "identities", + "name": "getUdHistoryAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "kind": "OBJECT", + "name": "UdHistoryAggregate", + "ofType": null } } }, @@ -23654,44 +37867,45 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentitySelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identityById", - "type": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "limit the number of rows returned", + "name": "limit", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -23700,8 +37914,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", "ofType": null } } @@ -23709,29 +37923,19 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"identity\"", "isDeprecated": false, - "name": "changeOwnerKeys", + "name": "identity", "type": { "kind": "NON_NULL", "name": null, @@ -23743,7 +37947,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChangeOwnerKey", + "name": "Identity", "ofType": null } } @@ -23754,44 +37958,45 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentitySelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "changeOwnerKeyById", - "type": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "limit the number of rows returned", + "name": "limit", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -23800,8 +38005,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CertOrderByInput", + "kind": "INPUT_OBJECT", + "name": "IdentityOrderBy", "ofType": null } } @@ -23809,44 +38014,26 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"identity\"", "isDeprecated": false, - "name": "certs", + "name": "identityAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } + "kind": "OBJECT", + "name": "IdentityAggregate", + "ofType": null } } }, @@ -23868,12 +38055,12 @@ } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"identity\" using primary key columns", "isDeprecated": false, - "name": "certById", + "name": "identityByPk", "type": { "kind": "OBJECT", - "name": "Cert", + "name": "Identity", "ofType": null } }, @@ -23881,27 +38068,31 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "where", + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", "type": { - "kind": "INPUT_OBJECT", - "name": "CertEventWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { "defaultValue": null, - "description": null, - "name": "orderBy", + "description": "cursor to stream the results returned by the query", + "name": "cursor", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "CertEventOrderByInput", + "kind": "INPUT_OBJECT", + "name": "IdentityStreamCursorInput", "ofType": null } } @@ -23909,29 +38100,19 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "IdentityBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"identity\"", "isDeprecated": false, - "name": "certEvents", + "name": "identityStream", "type": { "kind": "NON_NULL", "name": null, @@ -23943,7 +38124,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertEvent", + "name": "Identity", "ofType": null } } @@ -23954,44 +38135,45 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemsCounterSelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "certEventById", - "type": { - "kind": "OBJECT", - "name": "CertEvent", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -24000,8 +38182,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ItemsCounterOrderBy", "ofType": null } } @@ -24009,29 +38191,19 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"items_counter\"", "isDeprecated": false, - "name": "smithCerts", + "name": "itemsCounter", "type": { "kind": "NON_NULL", "name": null, @@ -24043,7 +38215,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCert", + "name": "ItemsCounter", "ofType": null } } @@ -24054,44 +38226,45 @@ "args": [ { "defaultValue": null, - "description": null, - "name": "id", + "description": "distinct select on columns", + "name": "distinctOn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemsCounterSelectColumn", + "ofType": null + } } } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "smithCertById", - "type": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, - "description": null, - "name": "where", + "description": "limit the number of rows returned", + "name": "limit", "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipEventWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", "name": "orderBy", "type": { "kind": "LIST", @@ -24100,8 +38273,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "MembershipEventOrderByInput", + "kind": "INPUT_OBJECT", + "name": "ItemsCounterOrderBy", "ofType": null } } @@ -24109,44 +38282,26 @@ }, { "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", + "description": "filter the rows returned", + "name": "where", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"items_counter\"", "isDeprecated": false, - "name": "membershipEvents", + "name": "itemsCounterAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null - } - } + "kind": "OBJECT", + "name": "ItemsCounterAggregate", + "ofType": null } } }, @@ -24168,67 +38323,64 @@ } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"items_counter\" using primary key columns", "isDeprecated": false, - "name": "membershipEventById", + "name": "itemsCounterByPk", "type": { "kind": "OBJECT", - "name": "MembershipEvent", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Subscription", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "The height of the processed part of the chain", - "isDeprecated": false, - "name": "height", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SquidStatus", - "possibleTypes": null - }, - { - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "ItemsCounter", "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": "A list of all types supported by this server.", + "description": "fetch data from the table in a streaming manner: \"items_counter\"", "isDeprecated": false, - "name": "types", + "name": "itemsCounterStream", "type": { "kind": "NON_NULL", "name": null, @@ -24240,7 +38392,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "ItemsCounter", "ofType": null } } @@ -24248,51 +38400,78 @@ } }, { - "args": [], - "deprecationReason": null, - "description": "The type that query operations will be rooted at.", - "isDeprecated": false, - "name": "queryType", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "isDeprecated": false, - "name": "mutationType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "isDeprecated": false, - "name": "subscriptionType", - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": "A list of all directives supported by this server.", + "description": "fetch data from the table: \"membership_event\"", "isDeprecated": false, - "name": "directives", + "name": "membershipEvent", "type": { "kind": "NON_NULL", "name": null, @@ -24304,143 +38483,277 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__Directive", + "name": "MembershipEvent", "ofType": null } } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Schema", - "possibleTypes": null - }, - { - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByUrl`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"membership_event\"", "isDeprecated": false, - "name": "kind", + "name": "membershipEventAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", + "kind": "OBJECT", + "name": "MembershipEventAggregate", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"membership_event\" using primary key columns", "isDeprecated": false, - "name": "specifiedByUrl", + "name": "membershipEventByPk", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MembershipEvent", "ofType": null } }, { "args": [ { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"membership_event\"", "isDeprecated": false, - "name": "fields", + "name": "membershipEventStream", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } } } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "interfaces", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", "ofType": null } } - } - }, - { - "args": [], + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"smith_cert\"", "isDeprecated": false, - "name": "possibleTypes", + "name": "smithCert", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } } } } @@ -24448,192 +38761,253 @@ { "args": [ { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"smith_cert\"", "isDeprecated": false, - "name": "enumValues", + "name": "smithCertAggregate", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } + "kind": "OBJECT", + "name": "SmithCertAggregate", + "ofType": null } } }, { "args": [ { - "defaultValue": "false", + "defaultValue": null, "description": null, - "name": "includeDeprecated", + "name": "id", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } ], "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "inputFields", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"smith_cert\" using primary key columns", "isDeprecated": false, - "name": "ofType", + "name": "smithCertByPk", "type": { "kind": "OBJECT", - "name": "__Type", + "name": "SmithCert", "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Type", - "possibleTypes": null - }, - { - "description": "An enum describing what kind of type a given `__Type` is.", - "enumValues": [ - { - "deprecationReason": null, - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "name": "SCALAR" - }, - { - "deprecationReason": null, - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "name": "OBJECT" - }, - { - "deprecationReason": null, - "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", - "isDeprecated": false, - "name": "INTERFACE" - }, - { - "deprecationReason": null, - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "name": "UNION" - }, - { - "deprecationReason": null, - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "name": "ENUM" - }, - { - "deprecationReason": null, - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "name": "INPUT_OBJECT" - }, - { - "deprecationReason": null, - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "name": "LIST" }, { + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SmithCertStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "name": "NON_NULL" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "__TypeKind", - "possibleTypes": null - }, - { - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"smith_cert\"", "isDeprecated": false, - "name": "name", + "name": "smithCertStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } + } } } }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, { "args": [ { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"transfer\"", "isDeprecated": false, - "name": "args", + "name": "transfer", "type": { "kind": "NON_NULL", "name": null, @@ -24645,7 +39019,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__InputValue", + "name": "Transfer", "ofType": null } } @@ -24653,307 +39027,968 @@ } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"transfer\"", "isDeprecated": false, - "name": "type", + "name": "transferAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "TransferAggregate", "ofType": null } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"transfer\" using primary key columns", "isDeprecated": false, - "name": "isDeprecated", + "name": "transferByPk", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "Transfer", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransferStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"transfer\"", "isDeprecated": false, - "name": "deprecationReason", + "name": "transferStream", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } + } + } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__Field", - "possibleTypes": null - }, - { - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"ud_history\"", "isDeprecated": false, - "name": "name", + "name": "udHistory", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } + } } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdHistorySelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"ud_history\"", "isDeprecated": false, - "name": "type", + "name": "udHistoryAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "UdHistoryAggregate", "ofType": null } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": "A GraphQL-formatted string representing the default value for this input value.", + "description": "fetch data from the table: \"ud_history\" using primary key columns", "isDeprecated": false, - "name": "defaultValue", + "name": "udHistoryByPk", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UdHistory", "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdHistoryBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"ud_history\"", "isDeprecated": false, - "name": "isDeprecated", + "name": "udHistoryStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdHistory", + "ofType": null + } + } } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "deprecationReason", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__InputValue", - "possibleTypes": null - }, - { - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "enumValues": null, - "fields": [ - { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdReevalSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"ud_reeval\"", "isDeprecated": false, - "name": "name", + "name": "udReeval", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdReeval", + "ofType": null + } + } } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UdReevalSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"ud_reeval\"", "isDeprecated": false, - "name": "isDeprecated", + "name": "udReevalAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UdReevalAggregate", "ofType": null } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"ud_reeval\" using primary key columns", "isDeprecated": false, - "name": "deprecationReason", + "name": "udReevalByPk", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UdReeval", "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "__EnumValue", - "possibleTypes": null - }, - { - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UdReevalStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UdReevalBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"ud_reeval\"", "isDeprecated": false, - "name": "name", + "name": "udReevalStream", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UdReeval", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UniversalDividendSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table: \"universal_dividend\"", "isDeprecated": false, - "name": "description", + "name": "universalDividend", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UniversalDividend", + "ofType": null + } + } + } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "distinct select on columns", + "name": "distinctOn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UniversalDividendSelectColumn", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "limit the number of rows returned", + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "skip the first n rows. Use only with order_by", + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "sort the rows by one or more columns", + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendOrderBy", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", + "ofType": null + } + } + ], "deprecationReason": null, - "description": null, + "description": "fetch aggregated fields from the table: \"universal_dividend\"", "isDeprecated": false, - "name": "isRepeatable", + "name": "universalDividendAggregate", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UniversalDividendAggregate", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "locations", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", + "kind": "SCALAR", + "name": "String", "ofType": null } } } + ], + "deprecationReason": null, + "description": "fetch data from the table: \"universal_dividend\" using primary key columns", + "isDeprecated": false, + "name": "universalDividendByPk", + "type": { + "kind": "OBJECT", + "name": "UniversalDividend", + "ofType": null } }, { "args": [ { - "defaultValue": "false", - "description": null, - "name": "includeDeprecated", + "defaultValue": null, + "description": "maximum number of rows returned in a single batch", + "name": "batchSize", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "cursor to stream the results returned by the query", + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendStreamCursorInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "filter the rows returned", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "UniversalDividendBoolExp", "ofType": null } } ], "deprecationReason": null, - "description": null, + "description": "fetch data from the table in a streaming manner: \"universal_dividend\"", "isDeprecated": false, - "name": "args", + "name": "universalDividendStream", "type": { "kind": "NON_NULL", "name": null, @@ -24965,7 +40000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__InputValue", + "name": "UniversalDividend", "ofType": null } } @@ -24976,132 +40011,80 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "__Directive", + "name": "subscription_root", "possibleTypes": null }, { - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "enumValues": [ - { - "deprecationReason": null, - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "name": "QUERY" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "name": "MUTATION" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "name": "SUBSCRIPTION" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a field.", - "isDeprecated": false, - "name": "FIELD" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "name": "FRAGMENT_DEFINITION" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "name": "FRAGMENT_SPREAD" - }, - { - "deprecationReason": null, - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "name": "INLINE_FRAGMENT" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "name": "VARIABLE_DEFINITION" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "name": "SCHEMA" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "name": "SCALAR" - }, - { - "deprecationReason": null, - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "name": "OBJECT" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "name": "FIELD_DEFINITION" - }, - { - "deprecationReason": null, - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "name": "ARGUMENT_DEFINITION" - }, - { - "deprecationReason": null, - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "name": "INTERFACE" - }, - { - "deprecationReason": null, - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "name": "UNION" - }, + "description": null, + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "timestamptz", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { - "deprecationReason": null, - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "name": "ENUM" + "defaultValue": null, + "description": null, + "name": "arguments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferSelectColumn", + "ofType": null + } + } + } }, { - "deprecationReason": null, - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "name": "ENUM_VALUE" + "defaultValue": null, + "description": null, + "name": "distinct", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { - "deprecationReason": null, - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "name": "INPUT_OBJECT" + "defaultValue": null, + "description": null, + "name": "filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferBoolExp", + "ofType": null + } }, { - "deprecationReason": null, - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "name": "INPUT_FIELD_DEFINITION" + "defaultValue": null, + "description": null, + "name": "predicate", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntComparisonExp", + "ofType": null + } + } } ], - "fields": null, - "inputFields": null, "interfaces": null, - "kind": "ENUM", - "name": "__DirectiveLocation", + "kind": "INPUT_OBJECT", + "name": "transferAggregateBoolExpCount", "possibleTypes": null } ] diff --git a/src/commands/identity.rs b/src/commands/identity.rs index 052f916..3f75a82 100644 --- a/src/commands/identity.rs +++ b/src/commands/identity.rs @@ -288,11 +288,11 @@ pub async fn get_identity( ( info.cert_issued .into_iter() - .map(|i| i.receiver.name.to_string()) + .map(|i| i.receiver.unwrap().name.to_string()) .collect(), info.cert_received .into_iter() - .map(|i| i.issuer.name.to_string()) + .map(|i| i.issuer.unwrap().name.to_string()) .collect(), info.linked_account .into_iter() @@ -300,11 +300,11 @@ pub async fn get_identity( .collect(), info.smith_cert_issued .into_iter() - .map(|i| i.receiver.name.to_string()) + .map(|i| i.receiver.unwrap().name.to_string()) .collect(), info.smith_cert_received .into_iter() - .map(|i| i.issuer.name.to_string()) + .map(|i| i.issuer.unwrap().name.to_string()) .collect(), ) } else { diff --git a/src/data.rs b/src/data.rs index 16cb048..43c8a18 100644 --- a/src/data.rs +++ b/src/data.rs @@ -17,9 +17,9 @@ pub const GDEV_DUNITER_ENDPOINTS: [&str; 5] = [ "wss://gdev.pini.fr:443/ws", ]; #[cfg(feature = "gdev")] -pub const GDEV_INDEXER_ENDPOINTS: [&str; 2] = [ - "https://subsquid.gdev.coinduf.eu/graphql", - "https://gdev-squid.axiom-team.fr/graphql", +pub const GDEV_INDEXER_ENDPOINTS: [&str; 1] = [ + // "https://subsquid.gdev.coinduf.eu/v1/graphql", + "https://gdev-squid.axiom-team.fr/v1/graphql", ]; // data derived from command arguments diff --git a/src/indexer.rs b/src/indexer.rs index f940b30..f48abbc 100644 --- a/src/indexer.rs +++ b/src/indexer.rs @@ -6,7 +6,7 @@ use comfy_table::{ContentArrangement, Table}; use graphql_client::reqwest::post_graphql; use graphql_client::GraphQLQuery; use queries::*; -use sp_core::Bytes; +// use sp_core::Bytes; #[derive(Clone, Debug)] pub struct Indexer { @@ -33,7 +33,7 @@ impl Indexer { index: index.into(), }) .await - .identities + .identity .pop() .map(|idty| idty.name) } @@ -44,7 +44,7 @@ impl Indexer { indexes: indexes.iter().map(|i| *i as i64).collect(), }) .await - .identities + .identity .into_iter() .map(|idty| (idty.index as IdtyId, idty.name)) .collect() @@ -56,7 +56,7 @@ impl Indexer { pubkey: pubkey.to_string(), }) .await - .identities + .identity .pop() .map(|idty| idty.name) } @@ -67,26 +67,26 @@ impl Indexer { pubkey: pubkey.to_string(), }) .await - .account_by_id + .account_by_pk .and_then(|mut acc| acc.was_identity.pop()) - .map(|idty| idty.identity.name) + .map(|idty| idty.identity.unwrap().name) } /// index → info - pub async fn identity_info(&self, index: u32) -> Option<identity_info::IdentityInfoIdentities> { + pub async fn identity_info(&self, index: u32) -> Option<identity_info::IdentityInfoIdentity> { self.query::<IdentityInfo>(identity_info::Variables { index: index.into(), }) .await - .identities + .identity .pop() } /// fetch latest block - pub async fn fetch_latest_block(&self) -> Option<latest_block::LatestBlockBlocks> { + pub async fn fetch_latest_block(&self) -> Option<latest_block::LatestBlockBlock> { self.query::<LatestBlock>(latest_block::Variables {}) .await - .blocks + .block .pop() } @@ -94,12 +94,12 @@ impl Indexer { pub async fn fetch_block_by_number( &self, number: BlockNumber, - ) -> Option<block_by_number::BlockByNumberBlocks> { + ) -> Option<block_by_number::BlockByNumberBlock> { self.query::<BlockByNumber>(block_by_number::Variables { number: number.into(), }) .await - .blocks + .block .pop() } @@ -114,7 +114,7 @@ impl Indexer { ) .await .map_err(|_e| { - // dbg!(_e); // for more info + dbg!(_e); // for more info GcliError::Indexer(format!("can not connect to indexer {}", &self.gql_url)) })?; @@ -127,20 +127,25 @@ impl Indexer { .ok_or(GcliError::Indexer( "no field 'data' when getting genesis hash".to_string(), ))? - .blocks + .block .first() .ok_or_else(|| GcliError::Indexer("genesis block not yet indexed".to_string()))? .hash .clone(); // convert it - Ok(convert_hash(hash)) + Ok(convert_hash_bytea(hash)) } } /// convert indexer bytes into hash -pub fn convert_hash(hash: Bytes) -> Hash { - let hash = TryInto::<[u8; 32]>::try_into(hash.as_ref()).unwrap(); +// pub fn convert_hash(hash: Bytes) -> Hash { +// let hash = TryInto::<[u8; 32]>::try_into(hash.as_ref()).unwrap(); +// hash.into() +// } +/// convert indexer bytes into hash +pub fn convert_hash_bytea(hash: queries::Bytea) -> Hash { + let hash = TryInto::<[u8; 32]>::try_into(hash.bytes.as_ref()).unwrap(); hash.into() } @@ -173,7 +178,7 @@ pub async fn handle_command(data: Data, command: Subcommand) -> Result<(), GcliE commands::blockchain::fetch_finalized_number_and_hash(&data).await?; let i_finalized_block = indexer.fetch_block_by_number(d_finalized_n).await; let (i_finalized_h, i_finalized_n) = if let Some(block) = i_finalized_block { - (Some(convert_hash(block.hash)), Some(block.height)) + (Some(convert_hash_bytea(block.hash)), Some(block.height)) } else { (None, None) }; @@ -181,7 +186,7 @@ pub async fn handle_command(data: Data, command: Subcommand) -> Result<(), GcliE let (d_latest_n, d_latest_h) = commands::blockchain::fetch_latest_number_and_hash(&data).await?; let i_latest_block = indexer.fetch_latest_block().await.expect("no latest block"); - let i_latest_h = convert_hash(i_latest_block.hash); + let i_latest_h = convert_hash_bytea(i_latest_block.hash); let i_latest_n = i_latest_block.height; fn color(x: bool) -> Color { diff --git a/src/indexer/queries.rs b/src/indexer/queries.rs index 29b6572..38c93db 100644 --- a/src/indexer/queries.rs +++ b/src/indexer/queries.rs @@ -1,58 +1,58 @@ use graphql_client::GraphQLQuery; -use sp_core::Bytes; - -#[derive(GraphQLQuery)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct IdentityNameByIndex; - -#[derive(GraphQLQuery)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct IdentityInfo; - -#[derive(GraphQLQuery)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct IdentityNameByPubkey; - -#[derive(GraphQLQuery)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct WasIdentityNameByPubkey; - -#[derive(GraphQLQuery)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct LatestBlock; - -#[derive(GraphQLQuery)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct BlockByNumber; - -#[derive(GraphQLQuery, Debug)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct GenesisHash; - -#[derive(GraphQLQuery, Debug)] -#[graphql( - schema_path = "res/indexer-schema.json", - query_path = "res/indexer-queries.graphql" -)] -pub struct NamesByIndexes; +use serde::{Deserialize, Deserializer}; + +// implementation of byte array +#[derive(Debug, Clone)] +pub struct Bytea { + pub bytes: Vec<u8>, +} + +// Hasura uses lowercase type name +#[allow(non_camel_case_types)] +type bytea = Bytea; + +// implement deserializing \\x prefixed hexadecimal +impl<'de> Deserialize<'de> for Bytea { + fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> + where + D: Deserializer<'de>, + { + // Deserialize as a string + let hex_string = String::deserialize(deserializer)?; + // Parse the hexadecimal string into a byte vector + let bytes = + hex::decode(hex_string[2..].to_string()).map_err(|e| serde::de::Error::custom(e))?; + Ok(Bytea { bytes }) + } +} + +// generate code for given graphql query +macro_rules! graphql_query { + ($name:ident) => { + #[derive(GraphQLQuery)] + #[graphql( + schema_path = "res/indexer-schema.json", + query_path = "res/indexer-queries.graphql" + )] + pub struct $name; + }; +} + +// repeat generation for multiple queries +macro_rules! graphql_query_for { + ( $($Name:ident),+ ) => { + $( graphql_query!($Name); )+ + }; +} + +// generate code for all queries in indexer-queries.graphql +graphql_query_for!( + IdentityNameByIndex, + IdentityInfo, + IdentityNameByPubkey, + WasIdentityNameByPubkey, + LatestBlock, + BlockByNumber, + GenesisHash, + NamesByIndexes +); -- GitLab