diff --git a/src/api/entities/Account/__tests__/index.ts b/src/api/entities/Account/__tests__/index.ts index 868870a230..1bf63bebf9 100644 --- a/src/api/entities/Account/__tests__/index.ts +++ b/src/api/entities/Account/__tests__/index.ts @@ -316,6 +316,7 @@ describe('Account class', () => { dsMockUtils.createApolloQueryMock( extrinsicsByArgs( + false, { blockId: blockNumber1.toString(), address, @@ -370,6 +371,7 @@ describe('Account class', () => { dsMockUtils.createApolloQueryMock( extrinsicsByArgs( + false, { blockId: blockNumber1.toString(), address, @@ -409,6 +411,7 @@ describe('Account class', () => { dsMockUtils.createApolloQueryMock( extrinsicsByArgs( + false, { blockId: undefined, address, @@ -438,6 +441,7 @@ describe('Account class', () => { dsMockUtils.createApolloQueryMock( extrinsicsByArgs( + false, { blockId: undefined, address, diff --git a/src/api/entities/Account/index.ts b/src/api/entities/Account/index.ts index bf49c40f40..14cdabb5c9 100644 --- a/src/api/entities/Account/index.ts +++ b/src/api/entities/Account/index.ts @@ -251,6 +251,7 @@ export class Account extends Entity { }, } = await context.queryMiddleware>( extrinsicsByArgs( + context.isSqIdPadded, { blockId: blockNumber ? blockNumber.toString() : undefined, address, diff --git a/src/api/entities/Identity/__tests__/index.ts b/src/api/entities/Identity/__tests__/index.ts index c2d01072f8..43af4395fc 100644 --- a/src/api/entities/Identity/__tests__/index.ts +++ b/src/api/entities/Identity/__tests__/index.ts @@ -628,7 +628,7 @@ describe('Identity class', () => { .calledWith({ id: assetId }, context) .mockReturnValue(assetId) ); - dsMockUtils.createApolloQueryMock(assetHoldersQuery({ identityId: did }), { + dsMockUtils.createApolloQueryMock(assetHoldersQuery(false, { identityId: did }), { assetHolders: { nodes: assetIds.map(assetId => ({ asset: { id: assetId } })), totalCount: 2, @@ -642,6 +642,7 @@ describe('Identity class', () => { dsMockUtils.createApolloQueryMock( assetHoldersQuery( + false, { identityId: did }, new BigNumber(1), new BigNumber(0), @@ -679,7 +680,7 @@ describe('Identity class', () => { .mockReturnValue(assetId) ); - dsMockUtils.createApolloQueryMock(nftHoldersQuery({ identityId: did }), { + dsMockUtils.createApolloQueryMock(nftHoldersQuery(false, { identityId: did }), { nftHolders: { nodes: assetIds.map(assetId => ({ asset: { id: assetId }, nftIds: [] })), totalCount: 2, @@ -693,6 +694,7 @@ describe('Identity class', () => { dsMockUtils.createApolloQueryMock( nftHoldersQuery( + false, { identityId: did }, new BigNumber(1), new BigNumber(0), diff --git a/src/api/entities/Identity/index.ts b/src/api/entities/Identity/index.ts index 51f5634c89..df87943f94 100644 --- a/src/api/entities/Identity/index.ts +++ b/src/api/entities/Identity/index.ts @@ -404,6 +404,7 @@ export class Identity extends Entity { }, } = await context.queryMiddleware>( assetHoldersQuery( + context.isSqIdPadded, { identityId: did, }, @@ -451,6 +452,7 @@ export class Identity extends Entity { }, } = await context.queryMiddleware>( nftHoldersQuery( + context.isSqIdPadded, { identityId: did, }, @@ -755,7 +757,10 @@ export class Identity extends Entity { let start: BigNumber | undefined; while (!allFetched) { - const { data, next } = await this.getHeldAssets({ size: MAX_PAGE_SIZE, start }); + const { data, next } = await this.getHeldAssets({ + size: MAX_PAGE_SIZE, + start, + }); start = next ? new BigNumber(next) : undefined; allFetched = !next; assets = [...assets, ...data]; diff --git a/src/middleware/__tests__/queries/assets.ts b/src/middleware/__tests__/queries/assets.ts index ccb4a96bdf..926852c438 100644 --- a/src/middleware/__tests__/queries/assets.ts +++ b/src/middleware/__tests__/queries/assets.ts @@ -30,12 +30,12 @@ describe('assetHoldersQuery', () => { start: 0, }; - let result = assetHoldersQuery(variables); + let result = assetHoldersQuery(false, variables); expect(result.query).toBeDefined(); expect(result.variables).toEqual(variables); - result = assetHoldersQuery(variables, new BigNumber(1), new BigNumber(0)); + result = assetHoldersQuery(false, variables, new BigNumber(1), new BigNumber(0)); expect(result.query).toBeDefined(); expect(result.variables).toEqual({ @@ -54,12 +54,12 @@ describe('nftHoldersQuery', () => { start: 0, }; - let result = nftHoldersQuery(variables); + let result = nftHoldersQuery(false, variables); expect(result.query).toBeDefined(); expect(result.variables).toEqual(variables); - result = nftHoldersQuery(variables, new BigNumber(1), new BigNumber(0)); + result = nftHoldersQuery(false, variables, new BigNumber(1), new BigNumber(0)); expect(result.query).toBeDefined(); expect(result.variables).toEqual({ diff --git a/src/middleware/__tests__/queries/extrinsics.ts b/src/middleware/__tests__/queries/extrinsics.ts index 76cf9e0fd4..626df862dd 100644 --- a/src/middleware/__tests__/queries/extrinsics.ts +++ b/src/middleware/__tests__/queries/extrinsics.ts @@ -17,7 +17,7 @@ describe('extrinsicByHash', () => { describe('extrinsicsByArgs', () => { it('should pass the variables to the grapqhl query', () => { - let result = extrinsicsByArgs({}); + let result = extrinsicsByArgs(false, {}); expect(result.query).toBeDefined(); expect(result.variables).toEqual({ size: DEFAULT_GQL_PAGE_SIZE, start: 0 }); @@ -32,7 +32,7 @@ describe('extrinsicsByArgs', () => { start: 0, }; - result = extrinsicsByArgs(variables); + result = extrinsicsByArgs(false, variables); expect(result.query).toBeDefined(); expect(result.variables).toEqual(variables); diff --git a/src/middleware/queries/assets.ts b/src/middleware/queries/assets.ts index 8dcc84ab80..90e3bf375e 100644 --- a/src/middleware/queries/assets.ts +++ b/src/middleware/queries/assets.ts @@ -50,11 +50,21 @@ export function assetQuery( * Get asset held by a DID */ export function assetHoldersQuery( + isSqIdPadded: boolean, filters: QueryArgs, size?: BigNumber, start?: BigNumber, orderBy = AssetHoldersOrderBy.AssetIdAsc ): QueryOptions>> { + if (isSqIdPadded) { + if (orderBy === AssetHoldersOrderBy.CreatedAtAsc) { + orderBy = AssetHoldersOrderBy.CreatedBlockIdAsc; + } + if (orderBy === AssetHoldersOrderBy.CreatedAtDesc) { + orderBy = AssetHoldersOrderBy.CreatedBlockIdDesc; + } + } + const query = gql` query AssetHoldersQuery($identityId: String!, $size: Int, $start: Int) { assetHolders( @@ -89,11 +99,21 @@ export function assetHoldersQuery( * Get NFTs held by a DID */ export function nftHoldersQuery( + isSqIdPadded: boolean, filters: QueryArgs, size?: BigNumber, start?: BigNumber, orderBy = NftHoldersOrderBy.AssetIdAsc ): QueryOptions>> { + if (isSqIdPadded) { + if (orderBy === NftHoldersOrderBy.CreatedAtAsc) { + orderBy = NftHoldersOrderBy.CreatedBlockIdAsc; + } + if (orderBy === NftHoldersOrderBy.CreatedAtDesc) { + orderBy = NftHoldersOrderBy.CreatedBlockIdDesc; + } + } + const query = gql` query NftHolderQuery($identityId: String!, $size: Int, $start: Int) { nftHolders( diff --git a/src/middleware/queries/extrinsics.ts b/src/middleware/queries/extrinsics.ts index 3740e58904..175db163fc 100644 --- a/src/middleware/queries/extrinsics.ts +++ b/src/middleware/queries/extrinsics.ts @@ -55,6 +55,7 @@ type ExtrinsicArgs = 'blockId' | 'address' | 'moduleId' | 'callId' | 'success'; * Get transactions */ export function extrinsicsByArgs( + isSqIdPadded: boolean, filters: QueryArgs, size?: BigNumber, start?: BigNumber, @@ -65,6 +66,16 @@ export function extrinsicsByArgs( callId: 'CallIdEnum', success: 'Int', }); + + if (isSqIdPadded) { + if (orderBy === ExtrinsicsOrderBy.CreatedAtAsc) { + orderBy = ExtrinsicsOrderBy.BlockIdAsc; + } + if (orderBy === ExtrinsicsOrderBy.CreatedAtDesc) { + orderBy = ExtrinsicsOrderBy.BlockIdDesc; + } + } + const query = gql` query TransactionsQuery ${args} diff --git a/src/middleware/queries/settlements.ts b/src/middleware/queries/settlements.ts index 048d729f9a..439b48c0cc 100644 --- a/src/middleware/queries/settlements.ts +++ b/src/middleware/queries/settlements.ts @@ -210,6 +210,7 @@ type InstructionAffirmationArgs = 'instructionId' | 'status' | 'identity' | 'isM * Get a specific instruction within a venue for a specific event */ export function instructionAffirmationsQuery( + paddedIds: boolean, filters: QueryArgs, size?: BigNumber, start?: BigNumber @@ -218,6 +219,11 @@ export function instructionAffirmationsQuery( status: 'AffirmStatusEnum', isMediator: 'Boolean', }); + + const orderBy = paddedIds + ? `[${InstructionAffirmationsOrderBy.CreatedBlockIdDesc}]` + : `[${InstructionAffirmationsOrderBy.CreatedAtAsc}, ${InstructionAffirmationsOrderBy.CreatedBlockIdAsc}]`; + const query = gql` query InstructionAffirmationsQuery ${args} @@ -226,7 +232,7 @@ export function instructionAffirmationsQuery( ${filter} first: $size offset: $start - orderBy: [${InstructionAffirmationsOrderBy.CreatedAtAsc}, ${InstructionAffirmationsOrderBy.CreatedBlockIdAsc}] + orderBy: ${orderBy} ) { totalCount nodes { @@ -248,8 +254,13 @@ export function instructionAffirmationsQuery( * Get a specific instruction within a venue for a specific event */ export function offChainAffirmationsQuery( + paddedIds: boolean, filters: QueryArgs ): QueryOptions> { + const orderBy = paddedIds + ? `${InstructionAffirmationsOrderBy.CreatedBlockIdAsc}` + : `${InstructionAffirmationsOrderBy.CreatedAtAsc}, ${InstructionAffirmationsOrderBy.CreatedBlockIdAsc}`; + const query = gql` query InstructionAffirmationsQuery($instructionId: String!) { instructionAffirmations( @@ -257,7 +268,7 @@ export function offChainAffirmationsQuery( instructionId: { equalTo: $instructionId } offChainReceiptExists: true } - orderBy: [${InstructionAffirmationsOrderBy.CreatedAtAsc}, ${InstructionAffirmationsOrderBy.CreatedBlockIdAsc}] + orderBy: [${orderBy}] ) { nodes { ${instructionAffirmationAttributes} diff --git a/src/middleware/types.ts b/src/middleware/types.ts index 44794b2feb..2e5c9dbee4 100644 --- a/src/middleware/types.ts +++ b/src/middleware/types.ts @@ -3,21 +3,25 @@ export type InputMaybe = T; export type Exact = { [K in keyof T]: T[K] }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; -export type MakeEmpty = { [_ in K]?: never }; -export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; +export type MakeEmpty = { + [_ in K]?: never; +}; +export type Incremental = + | T + | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string; output: string; } - String: { input: string; output: string; } - Boolean: { input: boolean; output: boolean; } - Int: { input: number; output: number; } - Float: { input: number; output: number; } - BigFloat: { input: any; output: any; } - BigInt: { input: any; output: any; } - Cursor: { input: any; output: any; } - Date: { input: any; output: any; } - Datetime: { input: any; output: any; } - JSON: { input: any; output: any; } + ID: { input: string; output: string }; + String: { input: string; output: string }; + Boolean: { input: boolean; output: boolean }; + Int: { input: number; output: number }; + Float: { input: number; output: number }; + BigFloat: { input: any; output: any }; + BigInt: { input: any; output: any }; + Cursor: { input: any; output: any }; + Date: { input: any; output: any }; + Datetime: { input: any; output: any }; + JSON: { input: any; output: any }; }; export type Account = Node & { @@ -51,7 +55,6 @@ export type Account = Node & { updatedBlockId: Scalars['String']['output']; }; - export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -64,7 +67,6 @@ export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -77,7 +79,6 @@ export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90,7 +91,6 @@ export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type AccountMultiSigsByCreatorAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -135,12 +135,12 @@ export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSig`. */ -export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSig`. */ export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEdge = { @@ -153,19 +153,19 @@ export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEd node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSig`. */ -export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSig`. */ export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnection = { @@ -184,12 +184,12 @@ export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSig`. */ -export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSig`. */ export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEdge = { @@ -202,19 +202,19 @@ export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEd node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSig`. */ -export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type AccountDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -317,7 +317,6 @@ export type AccountHistoriesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AccountHistory` values. */ export type AccountHistoriesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -347,7 +346,7 @@ export enum AccountHistoriesGroupBy { Id = 'ID', Identity = 'IDENTITY', Permissions = 'PERMISSIONS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AccountHistoriesHavingAverageInput = { @@ -432,7 +431,7 @@ export enum AccountHistoriesOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type AccountHistory = Node & { @@ -454,7 +453,6 @@ export type AccountHistory = Node & { updatedBlockId: Scalars['String']['output']; }; - export type AccountHistoryPermissionsArgs = { distinct?: InputMaybe>>; }; @@ -563,12 +561,12 @@ export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `MultiSig`. */ -export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `MultiSig`. */ export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdge = { @@ -581,19 +579,19 @@ export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `MultiSig`. */ -export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `MultiSig` object types. All fields are combined with a logical ‘and.’ */ export type AccountToManyMultiSigFilter = { @@ -624,7 +622,6 @@ export type AccountsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Account` values. */ export type AccountsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -654,7 +651,7 @@ export enum AccountsGroupBy { Id = 'ID', IdentityId = 'IDENTITY_ID', PermissionsId = 'PERMISSIONS_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AccountsHavingAverageInput = { @@ -903,12 +900,12 @@ export enum AccountsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export enum AffirmStatusEnum { Affirmed = 'Affirmed', - Rejected = 'Rejected' + Rejected = 'Rejected', } /** A filter to be used against AffirmStatusEnum fields. All fields are combined with a logical ‘and.’ */ @@ -940,7 +937,7 @@ export type AffirmStatusEnumFilter = { export enum AffirmingPartyEnum { Mediator = 'Mediator', Receiver = 'Receiver', - Sender = 'Sender' + Sender = 'Sender', } /** A filter to be used against AffirmingPartyEnum fields. All fields are combined with a logical ‘and.’ */ @@ -990,7 +987,6 @@ export type AgentGroup = Node & { updatedBlockId: Scalars['String']['output']; }; - export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1003,7 +999,6 @@ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1016,7 +1011,6 @@ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type AgentGroupMembersArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1029,7 +1023,6 @@ export type AgentGroupMembersArgs = { orderBy?: InputMaybe>; }; - export type AgentGroupPermissionsArgs = { distinct?: InputMaybe>>; }; @@ -1066,12 +1059,12 @@ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ -export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyEdge = { @@ -1084,19 +1077,19 @@ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyTo node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ -export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyEdgeAgentGroupMembershipsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyEdgeAgentGroupMembershipsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnection = { @@ -1115,12 +1108,12 @@ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ -export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyEdge = { @@ -1133,19 +1126,19 @@ export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyTo node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ -export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyEdgeAgentGroupMembershipsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyEdgeAgentGroupMembershipsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type AgentGroupDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -1312,7 +1305,6 @@ export type AgentGroupMembershipsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AgentGroupMembership` values. */ export type AgentGroupMembershipsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -1337,7 +1329,7 @@ export enum AgentGroupMembershipsGroupBy { GroupId = 'GROUP_ID', Id = 'ID', Member = 'MEMBER', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AgentGroupMembershipsHavingAverageInput = { @@ -1407,7 +1399,7 @@ export enum AgentGroupMembershipsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A filter to be used against many `AgentGroupMembership` object types. All fields are combined with a logical ‘and.’ */ @@ -1439,7 +1431,6 @@ export type AgentGroupsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AgentGroup` values. */ export type AgentGroupsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -1463,7 +1454,7 @@ export enum AgentGroupsGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', Permissions = 'PERMISSIONS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AgentGroupsHavingAverageInput = { @@ -1659,7 +1650,7 @@ export enum AgentGroupsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Asset = Node & { @@ -1870,7 +1861,6 @@ export type Asset = Node & { venuesByStoOfferingAssetIdAndVenueId: AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnection; }; - export type AssetAssetPreApprovalsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1883,7 +1873,6 @@ export type AssetAssetPreApprovalsArgs = { orderBy?: InputMaybe>; }; - export type AssetAssetTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1896,7 +1885,6 @@ export type AssetAssetTransactionsArgs = { orderBy?: InputMaybe>; }; - export type AssetAssetsByDistributionAssetIdAndCurrencyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1909,7 +1897,6 @@ export type AssetAssetsByDistributionAssetIdAndCurrencyIdArgs = { orderBy?: InputMaybe>; }; - export type AssetAssetsByDistributionCurrencyIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1922,7 +1909,6 @@ export type AssetAssetsByDistributionCurrencyIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1935,7 +1921,6 @@ export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1948,7 +1933,6 @@ export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1961,7 +1945,6 @@ export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1974,7 +1957,6 @@ export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -1987,7 +1969,6 @@ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2000,7 +1981,6 @@ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2013,7 +1993,6 @@ export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2026,7 +2005,6 @@ export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2039,7 +2017,6 @@ export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2052,7 +2029,6 @@ export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2065,7 +2041,6 @@ export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2078,7 +2053,6 @@ export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2091,7 +2065,6 @@ export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2104,7 +2077,6 @@ export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2117,7 +2089,6 @@ export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2130,7 +2101,6 @@ export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2143,7 +2113,6 @@ export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2156,7 +2125,6 @@ export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByFundingAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2169,7 +2137,6 @@ export type AssetBlocksByFundingAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2182,7 +2149,6 @@ export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2195,7 +2161,6 @@ export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2208,7 +2173,6 @@ export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2221,7 +2185,6 @@ export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2234,7 +2197,6 @@ export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2247,7 +2209,6 @@ export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2260,7 +2221,6 @@ export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2273,7 +2233,6 @@ export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2286,7 +2245,6 @@ export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2299,7 +2257,6 @@ export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2312,7 +2269,6 @@ export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2325,7 +2281,6 @@ export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2338,7 +2293,6 @@ export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2351,7 +2305,6 @@ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2364,7 +2317,6 @@ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2377,7 +2329,6 @@ export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2390,7 +2341,6 @@ export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2403,7 +2353,6 @@ export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2416,7 +2365,6 @@ export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2429,7 +2377,6 @@ export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2442,7 +2389,6 @@ export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2455,7 +2401,6 @@ export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2468,7 +2413,6 @@ export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type AssetClaimScopesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2481,7 +2425,6 @@ export type AssetClaimScopesArgs = { orderBy?: InputMaybe>; }; - export type AssetComplianceArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2494,7 +2437,6 @@ export type AssetComplianceArgs = { orderBy?: InputMaybe>; }; - export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2507,7 +2449,6 @@ export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdArgs = { orderBy?: InputMaybe>; }; - export type AssetDistributionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2520,7 +2461,6 @@ export type AssetDistributionsArgs = { orderBy?: InputMaybe>; }; - export type AssetDistributionsByCurrencyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2533,7 +2473,6 @@ export type AssetDistributionsByCurrencyIdArgs = { orderBy?: InputMaybe>; }; - export type AssetDocumentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2546,7 +2485,6 @@ export type AssetDocumentsArgs = { orderBy?: InputMaybe>; }; - export type AssetFundingsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2559,7 +2497,6 @@ export type AssetFundingsArgs = { orderBy?: InputMaybe>; }; - export type AssetHoldersArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2572,7 +2509,6 @@ export type AssetHoldersArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2585,7 +2521,6 @@ export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2598,7 +2533,6 @@ export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2611,7 +2545,6 @@ export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByDistributionAssetIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2624,7 +2557,6 @@ export type AssetIdentitiesByDistributionAssetIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2637,7 +2569,6 @@ export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2650,7 +2581,6 @@ export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2663,7 +2593,6 @@ export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2676,7 +2605,6 @@ export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2689,7 +2617,6 @@ export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2702,7 +2629,6 @@ export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdArgs = { orderBy?: InputMaybe>; }; - export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2715,7 +2641,6 @@ export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdArgs orderBy?: InputMaybe>; }; - export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2728,7 +2653,6 @@ export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2741,7 +2665,6 @@ export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdArgs = { orderBy?: InputMaybe>; }; - export type AssetMandatoryMediatorsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2754,7 +2677,6 @@ export type AssetMandatoryMediatorsArgs = { orderBy?: InputMaybe>; }; - export type AssetNftHoldersArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2767,7 +2689,6 @@ export type AssetNftHoldersArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfolioMovementsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2780,7 +2701,6 @@ export type AssetPortfolioMovementsArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2793,7 +2713,6 @@ export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2806,7 +2725,6 @@ export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2819,7 +2737,6 @@ export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2832,7 +2749,6 @@ export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2845,7 +2761,6 @@ export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2858,7 +2773,6 @@ export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2871,7 +2785,6 @@ export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2884,7 +2797,6 @@ export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type AssetStatTypesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2897,7 +2809,6 @@ export type AssetStatTypesArgs = { orderBy?: InputMaybe>; }; - export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2910,7 +2821,6 @@ export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdArgs = { orderBy?: InputMaybe>; }; - export type AssetStosByOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2923,7 +2833,6 @@ export type AssetStosByOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type AssetTickerExternalAgentActionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2936,7 +2845,6 @@ export type AssetTickerExternalAgentActionsArgs = { orderBy?: InputMaybe>; }; - export type AssetTickerExternalAgentHistoriesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2949,7 +2857,6 @@ export type AssetTickerExternalAgentHistoriesArgs = { orderBy?: InputMaybe>; }; - export type AssetTickerExternalAgentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2962,7 +2869,6 @@ export type AssetTickerExternalAgentsArgs = { orderBy?: InputMaybe>; }; - export type AssetTransferComplianceExemptionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2975,7 +2881,6 @@ export type AssetTransferComplianceExemptionsArgs = { orderBy?: InputMaybe>; }; - export type AssetTransferCompliancesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -2988,7 +2893,6 @@ export type AssetTransferCompliancesArgs = { orderBy?: InputMaybe>; }; - export type AssetTransferManagersArgs = { after?: InputMaybe; before?: InputMaybe; @@ -3001,7 +2905,6 @@ export type AssetTransferManagersArgs = { orderBy?: InputMaybe>; }; - export type AssetTrustedClaimIssuersArgs = { after?: InputMaybe; before?: InputMaybe; @@ -3014,7 +2917,6 @@ export type AssetTrustedClaimIssuersArgs = { orderBy?: InputMaybe>; }; - export type AssetVenuesByStoOfferingAssetIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -3091,12 +2993,12 @@ export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyEdge = { @@ -3109,19 +3011,19 @@ export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ -export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetAssetsByDistributionAssetIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Distribution`. */ export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyConnection = { @@ -3140,12 +3042,12 @@ export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyEdge = { @@ -3158,7 +3060,6 @@ export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ export type AssetAssetsByDistributionCurrencyIdAndAssetIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -3205,12 +3106,12 @@ export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetDocument`. */ -export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetDocument`. */ export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3223,19 +3124,19 @@ export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetDocument`. */ -export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdgeAssetDocumentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdgeAssetDocumentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetDocument`. */ export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3254,12 +3155,12 @@ export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetDocument`. */ -export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetDocument`. */ export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3272,19 +3173,19 @@ export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetDocument`. */ -export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdgeAssetDocumentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdgeAssetDocumentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetHolder`. */ export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3303,12 +3204,12 @@ export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetHolder`. */ -export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetHolder`. */ export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3321,19 +3222,19 @@ export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetHolder`. */ -export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetHolder`. */ export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3352,12 +3253,12 @@ export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetHolder`. */ -export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetHolder`. */ export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3370,19 +3271,19 @@ export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetHolder`. */ -export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3401,12 +3302,12 @@ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3419,19 +3320,19 @@ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3450,12 +3351,12 @@ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3468,19 +3369,19 @@ export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3499,12 +3400,12 @@ export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ -export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3517,19 +3418,19 @@ export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ -export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3548,12 +3449,12 @@ export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ -export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3566,19 +3467,19 @@ export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ -export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3597,12 +3498,12 @@ export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3615,19 +3516,19 @@ export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3646,12 +3547,12 @@ export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3664,19 +3565,19 @@ export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ClaimScope`. */ export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3695,12 +3596,12 @@ export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ClaimScope`. */ -export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ClaimScope`. */ export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3713,19 +3614,19 @@ export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ClaimScope`. */ -export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdgeClaimScopesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdgeClaimScopesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ClaimScope`. */ export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3744,12 +3645,12 @@ export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ClaimScope`. */ -export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ClaimScope`. */ export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3762,19 +3663,19 @@ export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ClaimScope`. */ -export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdgeClaimScopesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdgeClaimScopesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Compliance`. */ export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3793,12 +3694,12 @@ export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Compliance`. */ -export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Compliance`. */ export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3811,19 +3712,19 @@ export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Compliance`. */ -export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdgeCompliancesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdgeCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Compliance`. */ export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3842,12 +3743,12 @@ export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Compliance`. */ -export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Compliance`. */ export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3860,19 +3761,19 @@ export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Compliance`. */ -export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdgeCompliancesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdgeCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -3891,12 +3792,12 @@ export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -3909,19 +3810,19 @@ export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -3940,12 +3841,12 @@ export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -3958,19 +3859,19 @@ export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyConnection = { @@ -3989,12 +3890,12 @@ export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyEdge = { @@ -4007,19 +3908,19 @@ export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByDistributionCurrencyIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyConnection = { @@ -4038,12 +3939,12 @@ export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyEdge = { @@ -4056,19 +3957,19 @@ export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByDistributionCurrencyIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Funding`. */ export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4087,12 +3988,12 @@ export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Funding`. */ -export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Funding`. */ export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4105,19 +4006,19 @@ export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Funding`. */ -export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdgeFundingsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdgeFundingsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Funding`. */ export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4136,12 +4037,12 @@ export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Funding`. */ -export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Funding`. */ export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4154,19 +4055,19 @@ export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Funding`. */ -export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdgeFundingsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdgeFundingsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `NftHolder`. */ export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4185,12 +4086,12 @@ export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `NftHolder`. */ -export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `NftHolder`. */ export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4203,19 +4104,19 @@ export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `NftHolder`. */ -export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `NftHolder`. */ export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4234,12 +4135,12 @@ export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `NftHolder`. */ -export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `NftHolder`. */ export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4252,19 +4153,19 @@ export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `NftHolder`. */ -export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4283,12 +4184,12 @@ export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4301,19 +4202,19 @@ export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdge portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4332,12 +4233,12 @@ export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4350,19 +4251,19 @@ export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdge portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4381,12 +4282,12 @@ export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StatType`. */ -export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4399,19 +4300,19 @@ export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdge = { statTypesByCreatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4430,12 +4331,12 @@ export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StatType`. */ -export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4448,19 +4349,19 @@ export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdge = { statTypesByUpdatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4479,12 +4380,12 @@ export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4497,19 +4398,19 @@ export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdge = { stosByCreatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4528,12 +4429,12 @@ export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4546,19 +4447,19 @@ export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdge = { stosByUpdatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4577,12 +4478,12 @@ export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4595,19 +4496,19 @@ export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyTo tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4626,12 +4527,12 @@ export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4644,19 +4545,19 @@ export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyTo tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4675,12 +4576,12 @@ export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ -export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4693,19 +4594,19 @@ export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEd tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ -export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4724,12 +4625,12 @@ export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ -export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4742,19 +4643,19 @@ export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEd tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ -export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4773,12 +4674,12 @@ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4791,19 +4692,19 @@ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyT tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4822,12 +4723,12 @@ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4840,19 +4741,19 @@ export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyT tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4871,12 +4772,12 @@ export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4889,19 +4790,19 @@ export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdg transferCompliancesByCreatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -4920,12 +4821,12 @@ export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -4938,19 +4839,19 @@ export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdg transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -4969,12 +4870,12 @@ export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ -export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -4987,19 +4888,19 @@ export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdMany transferComplianceExemptionsByCreatedBlockId: TransferComplianceExemptionsConnection; }; - /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ -export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyEdgeTransferComplianceExemptionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyEdgeTransferComplianceExemptionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -5018,12 +4919,12 @@ export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ -export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -5036,19 +4937,19 @@ export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdMany transferComplianceExemptionsByUpdatedBlockId: TransferComplianceExemptionsConnection; }; - /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ -export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyEdgeTransferComplianceExemptionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyEdgeTransferComplianceExemptionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferManager`. */ export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -5067,12 +4968,12 @@ export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferManager`. */ -export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferManager`. */ export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -5085,19 +4986,19 @@ export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdge = transferManagersByCreatedBlockId: TransferManagersConnection; }; - /** A `Block` edge in the connection, with data from `TransferManager`. */ -export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdgeTransferManagersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdgeTransferManagersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferManager`. */ export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -5116,12 +5017,12 @@ export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferManager`. */ -export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferManager`. */ export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -5134,19 +5035,19 @@ export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdge = transferManagersByUpdatedBlockId: TransferManagersConnection; }; - /** A `Block` edge in the connection, with data from `TransferManager`. */ -export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdgeTransferManagersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdgeTransferManagersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnection = { @@ -5165,12 +5066,12 @@ export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ -export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdge = { @@ -5183,19 +5084,19 @@ export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdg trustedClaimIssuersByCreatedBlockId: TrustedClaimIssuersConnection; }; - /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ -export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdgeTrustedClaimIssuersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdgeTrustedClaimIssuersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnection = { @@ -5214,12 +5115,12 @@ export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ -export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdge = { @@ -5232,19 +5133,19 @@ export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdg trustedClaimIssuersByUpdatedBlockId: TrustedClaimIssuersConnection; }; - /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ -export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdgeTrustedClaimIssuersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdgeTrustedClaimIssuersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnection = { @@ -5263,12 +5164,12 @@ export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyEdge = { @@ -5281,19 +5182,19 @@ export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToMany statTypes: StatTypesConnection; }; - /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ -export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type AssetDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -5613,7 +5514,6 @@ export type AssetDocumentsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AssetDocument` values. */ export type AssetDocumentsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -5645,7 +5545,7 @@ export enum AssetDocumentsGroupBy { Link = 'LINK', Name = 'NAME', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AssetDocumentsHavingAverageInput = { @@ -5743,7 +5643,7 @@ export enum AssetDocumentsOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A filter to be used against `Asset` object types. All fields are combined with a logical ‘and.’ */ @@ -6113,7 +6013,6 @@ export type AssetHoldersConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AssetHolder` values. */ export type AssetHoldersConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -6139,7 +6038,7 @@ export enum AssetHoldersGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', IdentityId = 'IDENTITY_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AssetHoldersHavingAverageInput = { @@ -6208,7 +6107,13 @@ export enum AssetHoldersOrderBy { AmountDesc = 'AMOUNT_DESC', AssetIdAsc = 'ASSET_ID_ASC', AssetIdDesc = 'ASSET_ID_DESC', + /** + * @deprecated - Removed in SQ v19 updates `BlockIdAsc` to work instead + */ CreatedAtAsc = 'CREATED_AT_ASC', + /** + * @deprecated - Removed in SQ v19 updates `BlockIdDesc` to work instead + */ CreatedAtDesc = 'CREATED_AT_DESC', CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', @@ -6220,7 +6125,7 @@ export enum AssetHoldersOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A connection to a list of `Identity` values, with data from `AssetHolder`. */ @@ -6240,12 +6145,12 @@ export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetHolder`. */ -export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetHolder`. */ export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyEdge = { @@ -6258,7 +6163,6 @@ export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetHolder`. */ export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyEdgeHeldAssetsArgs = { after?: InputMaybe; @@ -6289,12 +6193,12 @@ export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ -export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyEdge = { @@ -6307,19 +6211,19 @@ export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToMany node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnection = { @@ -6338,12 +6242,12 @@ export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ -export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdge = { @@ -6356,19 +6260,19 @@ export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ -export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Distribution`. */ export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnection = { @@ -6387,12 +6291,12 @@ export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Distribution`. */ -export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Distribution`. */ export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyEdge = { @@ -6405,7 +6309,6 @@ export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Distribution`. */ export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -6436,12 +6339,12 @@ export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Distribution`. */ -export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Distribution`. */ export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdManyToManyEdge = { @@ -6454,7 +6357,6 @@ export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdManyToManyEdge = node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Distribution`. */ export type AssetIdentitiesByDistributionCurrencyIdAndIdentityIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -6485,12 +6387,12 @@ export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `NftHolder`. */ -export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `NftHolder`. */ export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyEdge = { @@ -6503,7 +6405,6 @@ export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `NftHolder`. */ export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyEdgeHeldNftsArgs = { after?: InputMaybe; @@ -6534,12 +6435,12 @@ export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `StatType`. */ -export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `StatType`. */ export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdge = { @@ -6552,19 +6453,19 @@ export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdge = { statTypesByClaimIssuerId: StatTypesConnection; }; - /** A `Identity` edge in the connection, with data from `StatType`. */ -export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Sto`. */ export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnection = { @@ -6583,12 +6484,12 @@ export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Sto`. */ -export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Sto`. */ export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyEdge = { @@ -6601,7 +6502,6 @@ export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyEdge = { stosByCreatorId: StosConnection; }; - /** A `Identity` edge in the connection, with data from `Sto`. */ export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { after?: InputMaybe; @@ -6632,12 +6532,12 @@ export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ -export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyEdge = { @@ -6650,19 +6550,19 @@ export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToMa tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnection = { @@ -6681,12 +6581,12 @@ export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ -export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdge = { @@ -6699,19 +6599,19 @@ export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdge tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ -export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnection = { @@ -6730,12 +6630,12 @@ export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ -export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyEdge = { @@ -6748,19 +6648,19 @@ export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyT tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnection = { @@ -6779,12 +6679,12 @@ export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ -export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyEdge = { @@ -6797,19 +6697,19 @@ export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToMany transferCompliancesByClaimIssuerId: TransferCompliancesConnection; }; - /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ -export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection = { @@ -6828,12 +6728,12 @@ export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdge = { @@ -6846,19 +6746,19 @@ export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToMany node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ -export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type AssetMandatoryMediator = Node & { __typename?: 'AssetMandatoryMediator'; @@ -6979,7 +6879,6 @@ export type AssetMandatoryMediatorsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AssetMandatoryMediator` values. */ export type AssetMandatoryMediatorsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -7005,7 +6904,7 @@ export enum AssetMandatoryMediatorsGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', IdentityId = 'IDENTITY_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AssetMandatoryMediatorsHavingAverageInput = { @@ -7077,7 +6976,7 @@ export enum AssetMandatoryMediatorsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type AssetMaxAggregateFilter = { @@ -7129,12 +7028,12 @@ export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyEdge = { @@ -7147,19 +7046,19 @@ export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToMany node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnection = { @@ -7178,12 +7077,12 @@ export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEdge = { @@ -7196,19 +7095,19 @@ export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEd node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnection = { @@ -7227,12 +7126,12 @@ export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ -export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyEdge = { @@ -7245,7 +7144,6 @@ export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyEdge = { node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -7276,12 +7174,12 @@ export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ -export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdManyToManyEdge = { @@ -7294,7 +7192,6 @@ export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdManyToManyEdge node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type AssetPortfoliosByDistributionCurrencyIdAndPortfolioIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -7325,12 +7222,12 @@ export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdge = { @@ -7343,19 +7240,19 @@ export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdge = { portfolioMovementsByFromId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnection = { @@ -7374,12 +7271,12 @@ export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdge = { @@ -7392,19 +7289,19 @@ export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdge = { portfolioMovementsByToId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnection = { @@ -7423,12 +7320,12 @@ export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyEdge = { @@ -7441,19 +7338,19 @@ export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyE stosByOfferingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnection = { @@ -7472,12 +7369,12 @@ export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEdge = { @@ -7490,19 +7387,19 @@ export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEd stosByRaisingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type AssetPreApproval = Node & { __typename?: 'AssetPreApproval'; @@ -7617,7 +7514,6 @@ export type AssetPreApprovalsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AssetPreApproval` values. */ export type AssetPreApprovalsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -7642,7 +7538,7 @@ export enum AssetPreApprovalsGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', IdentityId = 'IDENTITY_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AssetPreApprovalsHavingAverageInput = { @@ -7712,7 +7608,7 @@ export enum AssetPreApprovalsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ @@ -7732,12 +7628,12 @@ export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ -export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdge = { @@ -7750,19 +7646,19 @@ export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdge transferCompliances: TransferCompliancesConnection; }; - /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ -export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type AssetStddevPopulationAggregateFilter = { eventIdx?: InputMaybe; @@ -8407,7 +8303,6 @@ export type AssetTransactionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AssetTransaction` values. */ export type AssetTransactionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -8444,7 +8339,7 @@ export enum AssetTransactionsGroupBy { InstructionMemo = 'INSTRUCTION_MEMO', NftIds = 'NFT_IDS', ToPortfolioId = 'TO_PORTFOLIO_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AssetTransactionsHavingAverageInput = { @@ -8570,7 +8465,7 @@ export enum AssetTransactionsOrderBy { ToPortfolioIdAsc = 'TO_PORTFOLIO_ID_ASC', ToPortfolioIdDesc = 'TO_PORTFOLIO_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type AssetVariancePopulationAggregateFilter = { @@ -8622,7 +8517,6 @@ export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Sto`. */ export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -8640,7 +8534,6 @@ export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyEdge = { stos: StosConnection; }; - /** A `Venue` edge in the connection, with data from `Sto`. */ export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyEdgeStosArgs = { after?: InputMaybe; @@ -8671,7 +8564,6 @@ export type AssetsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values. */ export type AssetsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -8708,7 +8600,7 @@ export enum AssetsGroupBy { TotalSupply = 'TOTAL_SUPPLY', TotalTransfers = 'TOTAL_TRANSFERS', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AssetsHavingAverageInput = { @@ -13011,7 +12903,7 @@ export enum AssetsOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** Represents all possible authorization types */ @@ -13028,7 +12920,7 @@ export enum AuthTypeEnum { RotatePrimaryKeyToSecondary = 'RotatePrimaryKeyToSecondary', TransferAssetOwnership = 'TransferAssetOwnership', TransferPrimaryIssuanceAgent = 'TransferPrimaryIssuanceAgent', - TransferTicker = 'TransferTicker' + TransferTicker = 'TransferTicker', } /** A filter to be used against AuthTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -13184,7 +13076,7 @@ export enum AuthorizationStatusEnum { Consumed = 'Consumed', Pending = 'Pending', Rejected = 'Rejected', - Revoked = 'Revoked' + Revoked = 'Revoked', } /** A filter to be used against AuthorizationStatusEnum fields. All fields are combined with a logical ‘and.’ */ @@ -13230,7 +13122,6 @@ export type AuthorizationsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Authorization` values. */ export type AuthorizationsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -13262,7 +13153,7 @@ export enum AuthorizationsGroupBy { ToId = 'TO_ID', ToKey = 'TO_KEY', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type AuthorizationsHavingAverageInput = { @@ -13351,7 +13242,7 @@ export enum AuthorizationsOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** Represents possible all possible balance types */ @@ -13360,7 +13251,7 @@ export enum BalanceTypeEnum { Free = 'Free', Locked = 'Locked', Reserved = 'Reserved', - Unbonded = 'Unbonded' + Unbonded = 'Unbonded', } /** A filter to be used against BalanceTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -14353,7 +14244,6 @@ export type Block = Node & { venuesByUpdatedBlockId: VenuesConnection; }; - export type BlockAccountHistoriesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14366,7 +14256,6 @@ export type BlockAccountHistoriesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAccountHistoriesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14379,7 +14268,6 @@ export type BlockAccountHistoriesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAccountsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14392,7 +14280,6 @@ export type BlockAccountsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14405,7 +14292,6 @@ export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14418,7 +14304,6 @@ export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAccountsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14431,7 +14316,6 @@ export type BlockAccountsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAgentGroupMembershipsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14444,7 +14328,6 @@ export type BlockAgentGroupMembershipsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAgentGroupMembershipsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14457,7 +14340,6 @@ export type BlockAgentGroupMembershipsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14470,7 +14352,6 @@ export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdArgs = orderBy?: InputMaybe>; }; - export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14483,7 +14364,6 @@ export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdArgs = orderBy?: InputMaybe>; }; - export type BlockAgentGroupsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14496,7 +14376,6 @@ export type BlockAgentGroupsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAgentGroupsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14509,7 +14388,6 @@ export type BlockAgentGroupsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetDocumentsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14522,7 +14400,6 @@ export type BlockAssetDocumentsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetDocumentsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14535,7 +14412,6 @@ export type BlockAssetDocumentsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetHoldersByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14548,7 +14424,6 @@ export type BlockAssetHoldersByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetHoldersByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14561,7 +14436,6 @@ export type BlockAssetHoldersByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetMandatoryMediatorsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14574,7 +14448,6 @@ export type BlockAssetMandatoryMediatorsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetMandatoryMediatorsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14587,7 +14460,6 @@ export type BlockAssetMandatoryMediatorsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetPreApprovalsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14600,7 +14472,6 @@ export type BlockAssetPreApprovalsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetPreApprovalsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14613,7 +14484,6 @@ export type BlockAssetPreApprovalsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetTransactionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14626,7 +14496,6 @@ export type BlockAssetTransactionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetTransactionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14639,7 +14508,6 @@ export type BlockAssetTransactionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14652,7 +14520,6 @@ export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14665,7 +14532,6 @@ export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14678,7 +14544,6 @@ export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14691,7 +14556,6 @@ export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14704,7 +14568,6 @@ export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14717,7 +14580,6 @@ export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14730,7 +14592,6 @@ export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14743,7 +14604,6 @@ export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14756,7 +14616,6 @@ export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14769,7 +14628,6 @@ export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14782,7 +14640,6 @@ export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14795,7 +14652,6 @@ export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14808,7 +14664,6 @@ export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14821,7 +14676,6 @@ export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14834,7 +14688,6 @@ export type BlockAssetsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14847,7 +14700,6 @@ export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14860,7 +14712,6 @@ export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14873,7 +14724,6 @@ export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14886,7 +14736,6 @@ export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByFundingCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14899,7 +14748,6 @@ export type BlockAssetsByFundingCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14912,7 +14760,6 @@ export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14925,7 +14772,6 @@ export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14938,7 +14784,6 @@ export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14951,7 +14796,6 @@ export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14964,7 +14808,6 @@ export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14977,7 +14820,6 @@ export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -14990,7 +14832,6 @@ export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15003,7 +14844,6 @@ export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15016,7 +14856,6 @@ export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15029,7 +14868,6 @@ export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdArgs = orderBy?: InputMaybe>; }; - export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15042,7 +14880,6 @@ export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdArgs = orderBy?: InputMaybe>; }; - export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15055,7 +14892,6 @@ export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15068,7 +14904,6 @@ export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdArgs orderBy?: InputMaybe>; }; - export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15081,7 +14916,6 @@ export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdArgs orderBy?: InputMaybe>; }; - export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15094,7 +14928,6 @@ export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15107,7 +14940,6 @@ export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15120,7 +14952,6 @@ export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdArgs orderBy?: InputMaybe>; }; - export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15133,7 +14964,6 @@ export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdArgs orderBy?: InputMaybe>; }; - export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15146,7 +14976,6 @@ export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15159,7 +14988,6 @@ export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15172,7 +15000,6 @@ export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15185,7 +15012,6 @@ export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15198,7 +15024,6 @@ export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAssetsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15211,7 +15036,6 @@ export type BlockAssetsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAuthorizationsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15224,7 +15048,6 @@ export type BlockAuthorizationsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockAuthorizationsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15237,7 +15060,6 @@ export type BlockAuthorizationsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15250,7 +15072,6 @@ export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15263,7 +15084,6 @@ export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15276,7 +15096,6 @@ export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15289,7 +15108,6 @@ export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15302,7 +15120,6 @@ export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15315,7 +15132,6 @@ export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15328,7 +15144,6 @@ export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15341,7 +15156,6 @@ export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15354,7 +15168,6 @@ export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15367,7 +15180,6 @@ export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15380,7 +15192,6 @@ export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15393,7 +15204,6 @@ export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15406,7 +15216,6 @@ export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15419,7 +15228,6 @@ export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdAr orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15432,7 +15240,6 @@ export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdAr orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15445,7 +15252,6 @@ export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15458,7 +15264,6 @@ export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15471,7 +15276,6 @@ export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15484,7 +15288,6 @@ export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15497,7 +15300,6 @@ export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15510,7 +15312,6 @@ export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15523,7 +15324,6 @@ export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15536,7 +15336,6 @@ export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15549,7 +15348,6 @@ export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15562,7 +15360,6 @@ export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15575,7 +15372,6 @@ export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15588,7 +15384,6 @@ export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15601,7 +15396,6 @@ export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15614,7 +15408,6 @@ export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15627,7 +15420,6 @@ export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15640,7 +15432,6 @@ export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15653,7 +15444,6 @@ export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15666,7 +15456,6 @@ export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15679,7 +15468,6 @@ export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15692,7 +15480,6 @@ export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15705,7 +15492,6 @@ export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockId orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15718,7 +15504,6 @@ export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockId orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15731,7 +15516,6 @@ export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdA orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15744,7 +15528,6 @@ export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdA orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15757,7 +15540,6 @@ export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockI orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15770,7 +15552,6 @@ export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockI orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15783,7 +15564,6 @@ export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15796,7 +15576,6 @@ export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15809,7 +15588,6 @@ export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15822,7 +15600,6 @@ export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpda orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15835,7 +15612,6 @@ export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCrea orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15848,7 +15624,6 @@ export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdA orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15861,7 +15636,6 @@ export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdA orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15874,7 +15648,6 @@ export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15887,7 +15660,6 @@ export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15900,7 +15672,6 @@ export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15913,7 +15684,6 @@ export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15926,7 +15696,6 @@ export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15939,7 +15708,6 @@ export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15952,7 +15720,6 @@ export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15965,7 +15732,6 @@ export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15978,7 +15744,6 @@ export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -15991,7 +15756,6 @@ export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16004,7 +15768,6 @@ export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16017,7 +15780,6 @@ export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16030,7 +15792,6 @@ export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdAr orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16043,7 +15804,6 @@ export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdAr orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16056,7 +15816,6 @@ export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16069,7 +15828,6 @@ export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16082,7 +15840,6 @@ export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16095,7 +15852,6 @@ export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16108,7 +15864,6 @@ export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16121,7 +15876,6 @@ export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16134,7 +15888,6 @@ export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16147,7 +15900,6 @@ export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16160,7 +15912,6 @@ export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16173,7 +15924,6 @@ export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16186,7 +15936,6 @@ export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16199,7 +15948,6 @@ export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16212,7 +15960,6 @@ export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16225,7 +15972,6 @@ export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16238,7 +15984,6 @@ export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16251,7 +15996,6 @@ export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16264,7 +16008,6 @@ export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16277,7 +16020,6 @@ export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16290,7 +16032,6 @@ export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16303,7 +16044,6 @@ export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16316,7 +16056,6 @@ export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16329,7 +16068,6 @@ export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16342,7 +16080,6 @@ export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16355,7 +16092,6 @@ export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16368,7 +16104,6 @@ export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16381,7 +16116,6 @@ export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16394,7 +16128,6 @@ export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16407,7 +16140,6 @@ export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16420,7 +16152,6 @@ export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16433,7 +16164,6 @@ export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16446,7 +16176,6 @@ export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16459,7 +16188,6 @@ export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16472,7 +16200,6 @@ export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16485,7 +16212,6 @@ export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16498,7 +16224,6 @@ export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16511,7 +16236,6 @@ export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16524,7 +16248,6 @@ export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16537,7 +16260,6 @@ export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16550,7 +16272,6 @@ export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16563,7 +16284,6 @@ export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16576,7 +16296,6 @@ export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16589,7 +16308,6 @@ export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16602,7 +16320,6 @@ export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockI orderBy?: InputMaybe>; }; - export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16615,7 +16332,6 @@ export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockI orderBy?: InputMaybe>; }; - export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16628,7 +16344,6 @@ export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16641,7 +16356,6 @@ export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlock orderBy?: InputMaybe>; }; - export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16654,7 +16368,6 @@ export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlock orderBy?: InputMaybe>; }; - export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16667,7 +16380,6 @@ export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16680,7 +16392,6 @@ export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16693,7 +16404,6 @@ export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBloc orderBy?: InputMaybe>; }; - export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16706,7 +16416,6 @@ export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBloc orderBy?: InputMaybe>; }; - export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16719,7 +16428,6 @@ export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16732,7 +16440,6 @@ export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16745,7 +16452,6 @@ export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16758,7 +16464,6 @@ export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16771,7 +16476,6 @@ export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16784,7 +16488,6 @@ export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16797,7 +16500,6 @@ export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBridgeEventsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16810,7 +16512,6 @@ export type BlockBridgeEventsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockBridgeEventsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16823,7 +16524,6 @@ export type BlockBridgeEventsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockChildIdentitiesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16836,7 +16536,6 @@ export type BlockChildIdentitiesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockChildIdentitiesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16849,7 +16548,6 @@ export type BlockChildIdentitiesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockClaimScopesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16862,7 +16560,6 @@ export type BlockClaimScopesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockClaimScopesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16875,7 +16572,6 @@ export type BlockClaimScopesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockClaimsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16888,7 +16584,6 @@ export type BlockClaimsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockClaimsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16901,7 +16596,6 @@ export type BlockClaimsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockCompliancesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16914,7 +16608,6 @@ export type BlockCompliancesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockCompliancesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16927,7 +16620,6 @@ export type BlockCompliancesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16940,7 +16632,6 @@ export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAnd orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16953,7 +16644,6 @@ export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAnd orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16966,7 +16656,6 @@ export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAnd orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16979,7 +16668,6 @@ export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAnd orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -16992,7 +16680,6 @@ export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndA orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17005,7 +16692,6 @@ export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndA orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17018,7 +16704,6 @@ export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAn orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17031,7 +16716,6 @@ export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAn orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17044,7 +16728,6 @@ export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAn orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17057,7 +16740,6 @@ export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAn orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17070,7 +16752,6 @@ export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverI orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17083,7 +16764,6 @@ export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdA orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17096,7 +16776,6 @@ export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverI orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17109,32 +16788,31 @@ export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdA orderBy?: InputMaybe>; }; - -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockConfidentialAccountsByCreatedBlockIdArgs = { after?: InputMaybe; @@ -17148,7 +16826,6 @@ export type BlockConfidentialAccountsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAccountsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17161,7 +16838,6 @@ export type BlockConfidentialAccountsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetHistoriesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17174,7 +16850,6 @@ export type BlockConfidentialAssetHistoriesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetHistoriesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17187,7 +16862,6 @@ export type BlockConfidentialAssetHistoriesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetHoldersByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17200,7 +16874,6 @@ export type BlockConfidentialAssetHoldersByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetHoldersByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17213,7 +16886,6 @@ export type BlockConfidentialAssetHoldersByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetMovementsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17226,7 +16898,6 @@ export type BlockConfidentialAssetMovementsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetMovementsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17239,7 +16910,6 @@ export type BlockConfidentialAssetMovementsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17252,7 +16922,6 @@ export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAs orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17265,7 +16934,6 @@ export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAs orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17278,7 +16946,6 @@ export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAss orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17291,7 +16958,6 @@ export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAss orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17304,7 +16970,6 @@ export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndA orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17317,7 +16982,6 @@ export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndA orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17330,7 +16994,6 @@ export type BlockConfidentialAssetsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialAssetsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17343,7 +17006,6 @@ export type BlockConfidentialAssetsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialLegsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17356,7 +17018,6 @@ export type BlockConfidentialLegsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialLegsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17369,7 +17030,6 @@ export type BlockConfidentialLegsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17382,7 +17042,6 @@ export type BlockConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17395,32 +17054,31 @@ export type BlockConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - -export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdArgs = { after?: InputMaybe; @@ -17434,7 +17092,6 @@ export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTrans orderBy?: InputMaybe>; }; - export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17447,32 +17104,31 @@ export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTrans orderBy?: InputMaybe>; }; - -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockConfidentialTransactionsByCreatedBlockIdArgs = { after?: InputMaybe; @@ -17486,7 +17142,6 @@ export type BlockConfidentialTransactionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialTransactionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17499,7 +17154,6 @@ export type BlockConfidentialTransactionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17512,7 +17166,6 @@ export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVen orderBy?: InputMaybe>; }; - export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17525,7 +17178,6 @@ export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVen orderBy?: InputMaybe>; }; - export type BlockConfidentialVenuesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17538,7 +17190,6 @@ export type BlockConfidentialVenuesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockConfidentialVenuesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17551,7 +17202,6 @@ export type BlockConfidentialVenuesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17564,7 +17214,6 @@ export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdArgs = orderBy?: InputMaybe>; }; - export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17577,7 +17226,6 @@ export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdArgs = orderBy?: InputMaybe>; }; - export type BlockCustomClaimTypesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17590,7 +17238,6 @@ export type BlockCustomClaimTypesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17603,7 +17250,6 @@ export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdArg orderBy?: InputMaybe>; }; - export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17616,7 +17262,6 @@ export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdArg orderBy?: InputMaybe>; }; - export type BlockCustomClaimTypesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17629,7 +17274,6 @@ export type BlockCustomClaimTypesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockDistributionPaymentsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17642,7 +17286,6 @@ export type BlockDistributionPaymentsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockDistributionPaymentsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17655,7 +17298,6 @@ export type BlockDistributionPaymentsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockDistributionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17668,7 +17310,6 @@ export type BlockDistributionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17681,7 +17322,6 @@ export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistribution orderBy?: InputMaybe>; }; - export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17694,7 +17334,6 @@ export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistribution orderBy?: InputMaybe>; }; - export type BlockDistributionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17707,7 +17346,6 @@ export type BlockDistributionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockEventsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17720,7 +17358,6 @@ export type BlockEventsArgs = { orderBy?: InputMaybe>; }; - export type BlockExtrinsicsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17733,7 +17370,6 @@ export type BlockExtrinsicsArgs = { orderBy?: InputMaybe>; }; - export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17746,7 +17382,6 @@ export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdArgs = { orderBy?: InputMaybe>; }; - export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17759,7 +17394,6 @@ export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdArgs = orderBy?: InputMaybe>; }; - export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17772,7 +17406,6 @@ export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdArgs = orderBy?: InputMaybe>; }; - export type BlockFundingsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17785,7 +17418,6 @@ export type BlockFundingsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockFundingsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17798,7 +17430,6 @@ export type BlockFundingsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17811,7 +17442,6 @@ export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17824,7 +17454,6 @@ export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17837,7 +17466,6 @@ export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17850,7 +17478,6 @@ export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17863,7 +17490,6 @@ export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17876,7 +17502,6 @@ export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdArg orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17889,7 +17514,6 @@ export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdArg orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17902,7 +17526,6 @@ export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17915,7 +17538,6 @@ export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17928,7 +17550,6 @@ export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17941,7 +17562,6 @@ export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17954,7 +17574,6 @@ export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17967,7 +17586,6 @@ export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17980,7 +17598,6 @@ export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -17993,7 +17610,6 @@ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18006,7 +17622,6 @@ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18019,7 +17634,6 @@ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18032,7 +17646,6 @@ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18045,7 +17658,6 @@ export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18058,7 +17670,6 @@ export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18071,7 +17682,6 @@ export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18084,7 +17694,6 @@ export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18097,7 +17706,6 @@ export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdArgs = orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18110,7 +17718,6 @@ export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdArgs = orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18123,7 +17730,6 @@ export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18136,7 +17742,6 @@ export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18149,7 +17754,6 @@ export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAnd orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18162,7 +17766,6 @@ export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAnd orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18175,7 +17778,6 @@ export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18188,7 +17790,6 @@ export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18201,7 +17802,6 @@ export type BlockIdentitiesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18214,7 +17814,6 @@ export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18227,7 +17826,6 @@ export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18240,7 +17838,6 @@ export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18253,7 +17850,6 @@ export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdArgs = orderBy?: InputMaybe>; }; - export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18266,7 +17862,6 @@ export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdArgs = orderBy?: InputMaybe>; }; - export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18279,7 +17874,6 @@ export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18292,7 +17886,6 @@ export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18305,7 +17898,6 @@ export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18318,7 +17910,6 @@ export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18331,7 +17922,6 @@ export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18344,7 +17934,6 @@ export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18357,7 +17946,6 @@ export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18370,7 +17958,6 @@ export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18383,7 +17970,6 @@ export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18396,7 +17982,6 @@ export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18409,7 +17994,6 @@ export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18422,7 +18006,6 @@ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18435,7 +18018,6 @@ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18448,7 +18030,6 @@ export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18461,7 +18042,6 @@ export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18474,7 +18054,6 @@ export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18487,7 +18066,6 @@ export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18500,7 +18078,6 @@ export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18513,7 +18090,6 @@ export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18526,7 +18102,6 @@ export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18539,7 +18114,6 @@ export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18552,7 +18126,6 @@ export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdA orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18565,7 +18138,6 @@ export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdA orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18578,7 +18150,6 @@ export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdArgs = orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18591,7 +18162,6 @@ export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentity orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18604,7 +18174,6 @@ export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentity orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18617,7 +18186,6 @@ export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdArgs = orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18630,7 +18198,6 @@ export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdArg orderBy?: InputMaybe>; }; - export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18643,7 +18210,6 @@ export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdArg orderBy?: InputMaybe>; }; - export type BlockIdentitiesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18656,7 +18222,6 @@ export type BlockIdentitiesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18669,7 +18234,6 @@ export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18682,7 +18246,6 @@ export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionAffirmationsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18695,7 +18258,6 @@ export type BlockInstructionAffirmationsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionAffirmationsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18708,7 +18270,6 @@ export type BlockInstructionAffirmationsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionEventsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18721,7 +18282,6 @@ export type BlockInstructionEventsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionEventsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18734,7 +18294,6 @@ export type BlockInstructionEventsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionPartiesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18747,7 +18306,6 @@ export type BlockInstructionPartiesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18760,7 +18318,6 @@ export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPart orderBy?: InputMaybe>; }; - export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18773,7 +18330,6 @@ export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPart orderBy?: InputMaybe>; }; - export type BlockInstructionPartiesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18786,7 +18342,6 @@ export type BlockInstructionPartiesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18799,7 +18354,6 @@ export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdArg orderBy?: InputMaybe>; }; - export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18812,7 +18366,6 @@ export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdArg orderBy?: InputMaybe>; }; - export type BlockInstructionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18825,7 +18378,6 @@ export type BlockInstructionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18838,7 +18390,6 @@ export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructio orderBy?: InputMaybe>; }; - export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18851,7 +18402,6 @@ export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructio orderBy?: InputMaybe>; }; - export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18864,7 +18414,6 @@ export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdArg orderBy?: InputMaybe>; }; - export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18877,7 +18426,6 @@ export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdArg orderBy?: InputMaybe>; }; - export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18890,7 +18438,6 @@ export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdArg orderBy?: InputMaybe>; }; - export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18903,7 +18450,6 @@ export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdArg orderBy?: InputMaybe>; }; - export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18916,7 +18462,6 @@ export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18929,7 +18474,6 @@ export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInstructionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18942,7 +18486,6 @@ export type BlockInstructionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInvestmentsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18955,7 +18498,6 @@ export type BlockInvestmentsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockInvestmentsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18968,7 +18510,6 @@ export type BlockInvestmentsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockLegsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18981,7 +18522,6 @@ export type BlockLegsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -18994,7 +18534,6 @@ export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdArgs = { orderBy?: InputMaybe>; }; - export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19007,7 +18546,6 @@ export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdArgs = { orderBy?: InputMaybe>; }; - export type BlockLegsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19020,7 +18558,6 @@ export type BlockLegsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigAdminsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19033,7 +18570,6 @@ export type BlockMultiSigAdminsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigAdminsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19046,7 +18582,6 @@ export type BlockMultiSigAdminsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigProposalVotesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19059,7 +18594,6 @@ export type BlockMultiSigProposalVotesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigProposalVotesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19072,7 +18606,6 @@ export type BlockMultiSigProposalVotesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigProposalsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19085,7 +18618,6 @@ export type BlockMultiSigProposalsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19098,7 +18630,6 @@ export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposa orderBy?: InputMaybe>; }; - export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19111,7 +18642,6 @@ export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposa orderBy?: InputMaybe>; }; - export type BlockMultiSigProposalsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19124,7 +18654,6 @@ export type BlockMultiSigProposalsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigSignersByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19137,7 +18666,6 @@ export type BlockMultiSigSignersByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19150,7 +18678,6 @@ export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdA orderBy?: InputMaybe>; }; - export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19163,7 +18690,6 @@ export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdA orderBy?: InputMaybe>; }; - export type BlockMultiSigSignersByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19176,7 +18702,6 @@ export type BlockMultiSigSignersByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19189,7 +18714,6 @@ export type BlockMultiSigsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19202,7 +18726,6 @@ export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19215,7 +18738,6 @@ export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19228,7 +18750,6 @@ export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19241,7 +18762,6 @@ export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19254,7 +18774,6 @@ export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19267,7 +18786,6 @@ export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type BlockMultiSigsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19280,7 +18798,6 @@ export type BlockMultiSigsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockNftHoldersByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19293,7 +18810,6 @@ export type BlockNftHoldersByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockNftHoldersByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19306,7 +18822,6 @@ export type BlockNftHoldersByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockOffChainReceiptsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19319,7 +18834,6 @@ export type BlockOffChainReceiptsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19332,7 +18846,6 @@ export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffCha orderBy?: InputMaybe>; }; - export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19345,7 +18858,6 @@ export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffCha orderBy?: InputMaybe>; }; - export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19358,7 +18870,6 @@ export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainRece orderBy?: InputMaybe>; }; - export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19371,7 +18882,6 @@ export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainRece orderBy?: InputMaybe>; }; - export type BlockOffChainReceiptsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19384,7 +18894,6 @@ export type BlockOffChainReceiptsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19397,7 +18906,6 @@ export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19410,7 +18918,6 @@ export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPermissionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19423,7 +18930,6 @@ export type BlockPermissionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPermissionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19436,7 +18942,6 @@ export type BlockPermissionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPolyxTransactionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19449,7 +18954,6 @@ export type BlockPolyxTransactionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPolyxTransactionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19462,7 +18966,6 @@ export type BlockPolyxTransactionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfolioMovementsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19475,7 +18978,6 @@ export type BlockPortfolioMovementsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfolioMovementsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19488,7 +18990,6 @@ export type BlockPortfolioMovementsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19501,7 +19002,6 @@ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdArg orderBy?: InputMaybe>; }; - export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19514,7 +19014,6 @@ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdArgs orderBy?: InputMaybe>; }; - export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19527,7 +19026,6 @@ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdArg orderBy?: InputMaybe>; }; - export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19540,7 +19038,6 @@ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdArgs orderBy?: InputMaybe>; }; - export type BlockPortfoliosByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19553,7 +19050,6 @@ export type BlockPortfoliosByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19566,7 +19062,6 @@ export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19579,7 +19074,6 @@ export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19592,7 +19086,6 @@ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19605,7 +19098,6 @@ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19618,7 +19110,6 @@ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19631,7 +19122,6 @@ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19644,7 +19134,6 @@ export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19657,7 +19146,6 @@ export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19670,7 +19158,6 @@ export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19683,7 +19170,6 @@ export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type BlockPortfoliosByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19696,7 +19182,6 @@ export type BlockPortfoliosByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockProposalVotesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19709,7 +19194,6 @@ export type BlockProposalVotesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockProposalVotesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19722,7 +19206,6 @@ export type BlockProposalVotesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockProposalsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19735,7 +19218,6 @@ export type BlockProposalsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19748,7 +19230,6 @@ export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdArgs = { orderBy?: InputMaybe>; }; - export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19761,7 +19242,6 @@ export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdArgs = { orderBy?: InputMaybe>; }; - export type BlockProposalsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19774,7 +19254,6 @@ export type BlockProposalsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockStakingEventsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19787,7 +19266,6 @@ export type BlockStakingEventsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockStakingEventsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19800,7 +19278,6 @@ export type BlockStakingEventsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockStatTypesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19813,7 +19290,6 @@ export type BlockStatTypesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19826,7 +19302,6 @@ export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdArgs = orderBy?: InputMaybe>; }; - export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19839,7 +19314,6 @@ export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdArgs = orderBy?: InputMaybe>; }; - export type BlockStatTypesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19852,7 +19326,6 @@ export type BlockStatTypesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockStosByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19865,7 +19338,6 @@ export type BlockStosByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockStosByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19878,7 +19350,6 @@ export type BlockStosByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTickerExternalAgentActionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19891,7 +19362,6 @@ export type BlockTickerExternalAgentActionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTickerExternalAgentActionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19904,7 +19374,6 @@ export type BlockTickerExternalAgentActionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTickerExternalAgentHistoriesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19917,7 +19386,6 @@ export type BlockTickerExternalAgentHistoriesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTickerExternalAgentHistoriesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19930,7 +19398,6 @@ export type BlockTickerExternalAgentHistoriesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTickerExternalAgentsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19943,7 +19410,6 @@ export type BlockTickerExternalAgentsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTickerExternalAgentsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19956,7 +19422,6 @@ export type BlockTickerExternalAgentsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTransferComplianceExemptionsByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19969,7 +19434,6 @@ export type BlockTransferComplianceExemptionsByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTransferComplianceExemptionsByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19982,7 +19446,6 @@ export type BlockTransferComplianceExemptionsByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTransferCompliancesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -19995,7 +19458,6 @@ export type BlockTransferCompliancesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTransferCompliancesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20008,7 +19470,6 @@ export type BlockTransferCompliancesByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTransferManagersByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20021,7 +19482,6 @@ export type BlockTransferManagersByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTransferManagersByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20034,7 +19494,6 @@ export type BlockTransferManagersByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTrustedClaimIssuersByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20047,7 +19506,6 @@ export type BlockTrustedClaimIssuersByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockTrustedClaimIssuersByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20060,7 +19518,6 @@ export type BlockTrustedClaimIssuersByUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockVenuesByCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20073,7 +19530,6 @@ export type BlockVenuesByCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20086,7 +19542,6 @@ export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdArgs = { orderBy?: InputMaybe>; }; - export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20099,7 +19554,6 @@ export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdArgs = { orderBy?: InputMaybe>; }; - export type BlockVenuesByStoCreatedBlockIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20112,7 +19566,6 @@ export type BlockVenuesByStoCreatedBlockIdAndVenueIdArgs = { orderBy?: InputMaybe>; }; - export type BlockVenuesByStoUpdatedBlockIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20125,7 +19578,6 @@ export type BlockVenuesByStoUpdatedBlockIdAndVenueIdArgs = { orderBy?: InputMaybe>; }; - export type BlockVenuesByUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -20155,12 +19607,12 @@ export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Account` values, with data from `MultiSig`. */ -export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Account` edge in the connection, with data from `MultiSig`. */ export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEdge = { @@ -20173,19 +19625,19 @@ export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEd node?: Maybe; }; - /** A `Account` edge in the connection, with data from `MultiSig`. */ -export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Account` values, with data from `MultiSig`. */ export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnection = { @@ -20204,12 +19656,12 @@ export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Account` values, with data from `MultiSig`. */ -export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Account` edge in the connection, with data from `MultiSig`. */ export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEdge = { @@ -20222,19 +19674,19 @@ export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEd node?: Maybe; }; - /** A `Account` edge in the connection, with data from `MultiSig`. */ -export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnection = { @@ -20253,12 +19705,12 @@ export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ -export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyEdge = { @@ -20271,19 +19723,19 @@ export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyTo node?: Maybe; }; - /** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ -export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyEdgeMembersArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyEdgeMembersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnection = { @@ -20302,12 +19754,12 @@ export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ -export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyEdge = { @@ -20320,19 +19772,19 @@ export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyTo node?: Maybe; }; - /** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ -export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyEdgeMembersArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyEdgeMembersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockAggregates = { __typename?: 'BlockAggregates'; @@ -20374,12 +19826,12 @@ export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetDocument`. */ -export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetDocument`. */ export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20392,7 +19844,6 @@ export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetDocument`. */ export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyEdgeDocumentsArgs = { after?: InputMaybe; @@ -20423,12 +19874,12 @@ export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetDocument`. */ -export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetDocument`. */ export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -20441,7 +19892,6 @@ export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetDocument`. */ export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyEdgeDocumentsArgs = { after?: InputMaybe; @@ -20472,12 +19922,12 @@ export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetHolder`. */ -export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetHolder`. */ export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20490,7 +19940,6 @@ export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetHolder`. */ export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyEdgeHoldersArgs = { after?: InputMaybe; @@ -20521,12 +19970,12 @@ export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetHolder`. */ -export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetHolder`. */ export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -20539,7 +19988,6 @@ export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetHolder`. */ export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdgeHoldersArgs = { after?: InputMaybe; @@ -20570,12 +20018,12 @@ export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ -export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20588,19 +20036,19 @@ export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToMan node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -20619,12 +20067,12 @@ export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ -export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -20637,19 +20085,19 @@ export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToMan node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -20668,12 +20116,12 @@ export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ -export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20686,19 +20134,19 @@ export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdge node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ -export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -20717,12 +20165,12 @@ export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ -export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -20735,19 +20183,19 @@ export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdge node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ -export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -20766,12 +20214,12 @@ export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ -export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20784,19 +20232,19 @@ export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdge node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ -export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -20815,12 +20263,12 @@ export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ -export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -20833,19 +20281,19 @@ export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdge node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ -export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `ClaimScope`. */ export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -20864,12 +20312,12 @@ export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `ClaimScope`. */ -export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `ClaimScope`. */ export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20882,7 +20330,6 @@ export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `ClaimScope`. */ export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyEdgeClaimScopesArgs = { after?: InputMaybe; @@ -20913,12 +20360,12 @@ export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `ClaimScope`. */ -export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `ClaimScope`. */ export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -20931,7 +20378,6 @@ export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `ClaimScope`. */ export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyEdgeClaimScopesArgs = { after?: InputMaybe; @@ -20962,12 +20408,12 @@ export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Compliance`. */ -export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Compliance`. */ export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -20980,7 +20426,6 @@ export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Compliance`. */ export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyEdgeComplianceArgs = { after?: InputMaybe; @@ -21011,12 +20456,12 @@ export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Compliance`. */ -export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Compliance`. */ export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21029,7 +20474,6 @@ export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Compliance`. */ export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyEdgeComplianceArgs = { after?: InputMaybe; @@ -21060,12 +20504,12 @@ export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21078,7 +20522,6 @@ export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -21109,12 +20552,12 @@ export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyEdge = { @@ -21127,19 +20570,19 @@ export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyEdge = node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ -export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByDistributionCreatedBlockIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Distribution`. */ export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -21158,12 +20601,12 @@ export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21176,7 +20619,6 @@ export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -21207,12 +20649,12 @@ export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyEdge = { @@ -21225,19 +20667,19 @@ export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyEdge = node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ -export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByDistributionUpdatedBlockIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Funding`. */ export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -21256,12 +20698,12 @@ export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Funding`. */ -export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Funding`. */ export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21274,7 +20716,6 @@ export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Funding`. */ export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyEdgeFundingsArgs = { after?: InputMaybe; @@ -21305,12 +20746,12 @@ export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Funding`. */ -export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Funding`. */ export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21323,7 +20764,6 @@ export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Funding`. */ export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyEdgeFundingsArgs = { after?: InputMaybe; @@ -21354,12 +20794,12 @@ export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `NftHolder`. */ -export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `NftHolder`. */ export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21372,7 +20812,6 @@ export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `NftHolder`. */ export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyEdgeNftHoldersArgs = { after?: InputMaybe; @@ -21403,12 +20842,12 @@ export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `NftHolder`. */ -export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `NftHolder`. */ export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21421,7 +20860,6 @@ export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `NftHolder`. */ export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyEdgeNftHoldersArgs = { after?: InputMaybe; @@ -21452,12 +20890,12 @@ export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ -export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21470,19 +20908,19 @@ export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdge portfolioMovements: PortfolioMovementsConnection; }; - /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -21501,12 +20939,12 @@ export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ -export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21519,19 +20957,19 @@ export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdge portfolioMovements: PortfolioMovementsConnection; }; - /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `StatType`. */ export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -21550,12 +20988,12 @@ export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `StatType`. */ -export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `StatType`. */ export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21568,7 +21006,6 @@ export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyEdge = { statTypes: StatTypesConnection; }; - /** A `Asset` edge in the connection, with data from `StatType`. */ export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyEdgeStatTypesArgs = { after?: InputMaybe; @@ -21599,12 +21036,12 @@ export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `StatType`. */ -export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `StatType`. */ export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21617,7 +21054,6 @@ export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyEdge = { statTypes: StatTypesConnection; }; - /** A `Asset` edge in the connection, with data from `StatType`. */ export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyEdgeStatTypesArgs = { after?: InputMaybe; @@ -21648,12 +21084,12 @@ export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Sto`. */ -export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Sto`. */ export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdge = { @@ -21666,19 +21102,19 @@ export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdge = { stosByOfferingAssetId: StosConnection; }; - /** A `Asset` edge in the connection, with data from `Sto`. */ -export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Sto`. */ export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnection = { @@ -21697,12 +21133,12 @@ export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Sto`. */ -export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Sto`. */ export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdge = { @@ -21715,19 +21151,19 @@ export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdge = { stosByOfferingAssetId: StosConnection; }; - /** A `Asset` edge in the connection, with data from `Sto`. */ -export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -21746,12 +21182,12 @@ export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ -export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21764,19 +21200,19 @@ export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyTo tickerExternalAgentActions: TickerExternalAgentActionsConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -21795,12 +21231,12 @@ export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ -export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21813,19 +21249,19 @@ export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyTo tickerExternalAgentActions: TickerExternalAgentActionsConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -21844,12 +21280,12 @@ export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ -export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21862,19 +21298,19 @@ export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEd tickerExternalAgents: TickerExternalAgentsConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ -export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -21893,12 +21329,12 @@ export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ -export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -21911,19 +21347,19 @@ export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyT tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -21942,12 +21378,12 @@ export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ -export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -21960,19 +21396,19 @@ export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyT tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -21991,12 +21427,12 @@ export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ -export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -22009,19 +21445,19 @@ export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEd tickerExternalAgents: TickerExternalAgentsConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ -export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -22040,12 +21476,12 @@ export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ -export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -22058,19 +21494,19 @@ export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdg transferCompliances: TransferCompliancesConnection; }; - /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ -export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -22089,12 +21525,12 @@ export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ -export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -22107,19 +21543,19 @@ export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdMany transferComplianceExemptions: TransferComplianceExemptionsConnection; }; - /** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ -export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyEdgeTransferComplianceExemptionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyEdgeTransferComplianceExemptionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -22138,12 +21574,12 @@ export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ -export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -22156,19 +21592,19 @@ export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdMany transferComplianceExemptions: TransferComplianceExemptionsConnection; }; - /** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ -export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyEdgeTransferComplianceExemptionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyEdgeTransferComplianceExemptionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -22187,12 +21623,12 @@ export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ -export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -22205,19 +21641,19 @@ export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdg transferCompliances: TransferCompliancesConnection; }; - /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ -export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferManager`. */ export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -22236,12 +21672,12 @@ export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferManager`. */ -export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferManager`. */ export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -22254,19 +21690,19 @@ export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdge = transferManagers: TransferManagersConnection; }; - /** A `Asset` edge in the connection, with data from `TransferManager`. */ -export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdgeTransferManagersArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdgeTransferManagersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferManager`. */ export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -22285,12 +21721,12 @@ export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferManager`. */ -export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferManager`. */ export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -22303,19 +21739,19 @@ export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdge = transferManagers: TransferManagersConnection; }; - /** A `Asset` edge in the connection, with data from `TransferManager`. */ -export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdgeTransferManagersArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdgeTransferManagersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnection = { @@ -22334,12 +21770,12 @@ export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ -export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdge = { @@ -22352,19 +21788,19 @@ export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdg trustedClaimIssuers: TrustedClaimIssuersConnection; }; - /** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ -export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdgeTrustedClaimIssuersArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdgeTrustedClaimIssuersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnection = { @@ -22383,12 +21819,12 @@ export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ -export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdge = { @@ -22401,19 +21837,19 @@ export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdg trustedClaimIssuers: TrustedClaimIssuersConnection; }; - /** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ -export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdgeTrustedClaimIssuersArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdgeTrustedClaimIssuersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockAverageAggregates = { __typename?: 'BlockAverageAggregates'; @@ -22454,12 +21890,12 @@ export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Account`. */ -export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Account`. */ export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -22472,19 +21908,19 @@ export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Account`. */ -export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AccountHistory`. */ export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -22503,12 +21939,12 @@ export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AccountHistory`. */ -export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AccountHistory`. */ export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -22521,19 +21957,19 @@ export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AccountHistory`. */ -export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAccountHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAccountHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AccountHistory`. */ export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -22552,12 +21988,12 @@ export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AccountHistory`. */ -export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AccountHistory`. */ export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -22570,19 +22006,19 @@ export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AccountHistory`. */ -export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAccountHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAccountHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Account`. */ export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -22601,12 +22037,12 @@ export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Account`. */ -export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Account`. */ export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -22619,19 +22055,19 @@ export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Account`. */ -export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AgentGroup`. */ export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -22650,12 +22086,12 @@ export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AgentGroup`. */ -export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AgentGroup`. */ export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -22668,19 +22104,19 @@ export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AgentGroup`. */ -export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAgentGroupsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAgentGroupsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -22699,12 +22135,12 @@ export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ -export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -22717,19 +22153,19 @@ export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ -export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAgentGroupMembershipsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAgentGroupMembershipsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -22748,12 +22184,12 @@ export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ -export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -22766,19 +22202,19 @@ export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ -export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAgentGroupMembershipsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAgentGroupMembershipsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AgentGroup`. */ export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -22797,12 +22233,12 @@ export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AgentGroup`. */ -export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AgentGroup`. */ export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -22815,19 +22251,19 @@ export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AgentGroup`. */ -export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAgentGroupsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAgentGroupsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Asset`. */ export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -22846,12 +22282,12 @@ export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Asset`. */ -export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Asset`. */ export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -22864,19 +22300,19 @@ export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Asset`. */ -export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetDocument`. */ export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -22895,12 +22331,12 @@ export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetDocument`. */ -export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetDocument`. */ export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -22913,19 +22349,19 @@ export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetDocument`. */ -export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetDocumentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetDocumentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetDocument`. */ export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -22944,12 +22380,12 @@ export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetDocument`. */ -export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetDocument`. */ export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -22962,19 +22398,19 @@ export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetDocument`. */ -export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetDocumentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetDocumentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetHolder`. */ export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -22993,12 +22429,12 @@ export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetHolder`. */ -export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetHolder`. */ export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23011,19 +22447,19 @@ export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetHolder`. */ -export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetHolder`. */ export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23042,12 +22478,12 @@ export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetHolder`. */ -export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetHolder`. */ export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23060,43 +22496,44 @@ export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetHolder`. */ -export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23109,43 +22546,44 @@ export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23158,19 +22596,19 @@ export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23189,12 +22627,12 @@ export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ -export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23207,19 +22645,19 @@ export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ -export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23238,12 +22676,12 @@ export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ -export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23256,19 +22694,19 @@ export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ -export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23287,12 +22725,12 @@ export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23305,19 +22743,19 @@ export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23336,12 +22774,12 @@ export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23354,19 +22792,19 @@ export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Asset`. */ export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23385,12 +22823,12 @@ export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Asset`. */ -export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Asset`. */ export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23403,19 +22841,19 @@ export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Asset`. */ -export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Authorization`. */ export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23434,12 +22872,12 @@ export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Authorization`. */ -export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Authorization`. */ export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23452,19 +22890,19 @@ export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Authorization`. */ -export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAuthorizationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAuthorizationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Authorization`. */ export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23483,12 +22921,12 @@ export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Authorization`. */ -export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Authorization`. */ export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23501,19 +22939,19 @@ export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Authorization`. */ -export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAuthorizationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAuthorizationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23532,12 +22970,12 @@ export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ -export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `BridgeEvent`. */ export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23550,19 +22988,19 @@ export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `BridgeEvent`. */ -export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeBridgeEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeBridgeEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23581,12 +23019,12 @@ export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ -export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `BridgeEvent`. */ export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23599,19 +23037,19 @@ export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `BridgeEvent`. */ -export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeBridgeEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeBridgeEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23630,12 +23068,12 @@ export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ -export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ChildIdentity`. */ export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23648,19 +23086,19 @@ export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ChildIdentity`. */ -export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23679,12 +23117,12 @@ export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ -export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ChildIdentity`. */ export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23697,19 +23135,19 @@ export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ChildIdentity`. */ -export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23728,12 +23166,12 @@ export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23746,19 +23184,19 @@ export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ClaimScope`. */ export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23777,12 +23215,12 @@ export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ClaimScope`. */ -export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ClaimScope`. */ export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23795,19 +23233,19 @@ export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ClaimScope`. */ -export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeClaimScopesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeClaimScopesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ClaimScope`. */ export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23826,12 +23264,12 @@ export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ClaimScope`. */ -export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ClaimScope`. */ export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23844,19 +23282,19 @@ export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ClaimScope`. */ -export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeClaimScopesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeClaimScopesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23875,12 +23313,12 @@ export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23893,19 +23331,19 @@ export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Compliance`. */ export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -23924,12 +23362,12 @@ export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Compliance`. */ -export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Compliance`. */ export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -23942,19 +23380,19 @@ export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Compliance`. */ -export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCompliancesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Compliance`. */ export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -23973,12 +23411,12 @@ export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Compliance`. */ -export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Compliance`. */ export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -23991,19 +23429,19 @@ export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Compliance`. */ -export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCompliancesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -24022,12 +23460,12 @@ export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ -export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24040,19 +23478,19 @@ export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyT node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ -export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAccountsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -24071,12 +23509,12 @@ export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ -export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24089,19 +23527,19 @@ export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyT node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ -export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAccountsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -24120,12 +23558,12 @@ export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ -export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24138,43 +23576,44 @@ export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ -export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24187,43 +23626,44 @@ export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockId node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24236,43 +23676,44 @@ export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockId node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24285,43 +23726,44 @@ export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24334,43 +23776,44 @@ export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24383,43 +23826,44 @@ export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockI node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24432,19 +23876,19 @@ export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockI node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -24463,12 +23907,12 @@ export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ -export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24481,19 +23925,19 @@ export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ -export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -24512,12 +23956,12 @@ export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24530,19 +23974,19 @@ export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -24561,12 +24005,12 @@ export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24579,141 +24023,146 @@ export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24726,43 +24175,44 @@ export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ -export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24775,19 +24225,19 @@ export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ -export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -24806,12 +24256,12 @@ export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ -export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24824,19 +24274,19 @@ export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ -export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialVenuesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -24855,12 +24305,12 @@ export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ -export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24873,19 +24323,19 @@ export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ -export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialVenuesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -24904,12 +24354,12 @@ export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ -export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `CustomClaimType`. */ export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -24922,19 +24372,19 @@ export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `CustomClaimType`. */ -export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -24953,12 +24403,12 @@ export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ -export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `CustomClaimType`. */ export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -24971,19 +24421,19 @@ export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `CustomClaimType`. */ -export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25002,12 +24452,12 @@ export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25020,19 +24470,19 @@ export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEd node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25051,12 +24501,12 @@ export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `DistributionPayment`. */ export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25069,19 +24519,19 @@ export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyT node?: Maybe; }; - /** A `Block` edge in the connection, with data from `DistributionPayment`. */ -export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25100,12 +24550,12 @@ export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `DistributionPayment`. */ export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25118,19 +24568,19 @@ export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyT node?: Maybe; }; - /** A `Block` edge in the connection, with data from `DistributionPayment`. */ -export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25149,12 +24599,12 @@ export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25167,19 +24617,19 @@ export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEd node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Funding`. */ export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25198,12 +24648,12 @@ export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Funding`. */ -export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Funding`. */ export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25216,19 +24666,19 @@ export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Funding`. */ -export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeFundingsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeFundingsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Funding`. */ export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25247,12 +24697,12 @@ export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Funding`. */ -export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Funding`. */ export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25265,19 +24715,19 @@ export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Funding`. */ -export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeFundingsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeFundingsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Identity`. */ export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25296,12 +24746,12 @@ export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Identity`. */ -export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Identity`. */ export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25314,19 +24764,19 @@ export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Identity`. */ -export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeIdentitiesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Identity`. */ export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25345,12 +24795,12 @@ export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Identity`. */ -export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Identity`. */ export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25363,43 +24813,44 @@ export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Identity`. */ -export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeIdentitiesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25412,43 +24863,44 @@ export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25461,19 +24913,19 @@ export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Instruction`. */ export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25492,12 +24944,12 @@ export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Instruction`. */ -export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Instruction`. */ export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25510,19 +24962,19 @@ export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Instruction`. */ -export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25541,12 +24993,12 @@ export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25559,19 +25011,19 @@ export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25590,12 +25042,12 @@ export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25608,19 +25060,19 @@ export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionParty`. */ export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25639,12 +25091,12 @@ export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `InstructionParty`. */ -export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionParty`. */ export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25657,19 +25109,19 @@ export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionParty`. */ -export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionPartiesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionPartiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionParty`. */ export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25688,12 +25140,12 @@ export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `InstructionParty`. */ -export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionParty`. */ export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25706,19 +25158,19 @@ export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionParty`. */ -export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionPartiesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionPartiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Instruction`. */ export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25737,12 +25189,12 @@ export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Instruction`. */ -export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Instruction`. */ export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25755,19 +25207,19 @@ export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Instruction`. */ -export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Investment`. */ export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25786,12 +25238,12 @@ export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Investment`. */ -export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Investment`. */ export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25804,19 +25256,19 @@ export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Investment`. */ -export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInvestmentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInvestmentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Investment`. */ export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25835,12 +25287,12 @@ export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Investment`. */ -export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Investment`. */ export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25853,19 +25305,19 @@ export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Investment`. */ -export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInvestmentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInvestmentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Leg`. */ export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25884,12 +25336,12 @@ export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Leg`. */ -export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Leg`. */ export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -25902,19 +25354,19 @@ export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Leg`. */ -export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeLegsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Leg`. */ export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -25933,12 +25385,12 @@ export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Leg`. */ -export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Leg`. */ export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -25951,19 +25403,19 @@ export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Leg`. */ -export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeLegsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -25982,12 +25434,12 @@ export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ -export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26000,19 +25452,19 @@ export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ -export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigAdminsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigAdminCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigAdminsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26031,12 +25483,12 @@ export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ -export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26049,19 +25501,19 @@ export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ -export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigAdminsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigAdminUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigAdminsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSig`. */ export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26080,12 +25532,12 @@ export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSig`. */ -export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSig`. */ export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26098,19 +25550,19 @@ export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSig`. */ -export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26129,12 +25581,12 @@ export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ -export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26147,19 +25599,19 @@ export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ -export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26178,12 +25630,12 @@ export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ -export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26196,19 +25648,19 @@ export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ -export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26227,12 +25679,12 @@ export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26245,19 +25697,19 @@ export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26276,12 +25728,12 @@ export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26294,19 +25746,19 @@ export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26325,12 +25777,12 @@ export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ -export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26343,19 +25795,19 @@ export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ -export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigSignersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigSignersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26374,12 +25826,12 @@ export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ -export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26392,19 +25844,19 @@ export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ -export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigSignersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigSignersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSig`. */ export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26423,12 +25875,12 @@ export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSig`. */ -export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSig`. */ export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26441,19 +25893,19 @@ export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSig`. */ -export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `NftHolder`. */ export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26472,12 +25924,12 @@ export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `NftHolder`. */ -export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `NftHolder`. */ export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26490,19 +25942,19 @@ export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `NftHolder`. */ -export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `NftHolder`. */ export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26521,12 +25973,12 @@ export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `NftHolder`. */ -export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `NftHolder`. */ export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26539,19 +25991,19 @@ export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `NftHolder`. */ -export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26570,12 +26022,12 @@ export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ -export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26588,19 +26040,19 @@ export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToMan offChainReceiptsByUpdatedBlockId: OffChainReceiptsConnection; }; - /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ -export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeOffChainReceiptsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeOffChainReceiptsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26619,12 +26071,12 @@ export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ -export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26637,19 +26089,19 @@ export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToMan offChainReceiptsByCreatedBlockId: OffChainReceiptsConnection; }; - /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ -export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeOffChainReceiptsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeOffChainReceiptsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Permission`. */ export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26668,12 +26120,12 @@ export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Permission`. */ -export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Permission`. */ export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26686,19 +26138,19 @@ export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge permissionsByUpdatedBlockId: PermissionsConnection; }; - /** A `Block` edge in the connection, with data from `Permission`. */ -export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePermissionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePermissionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Permission`. */ export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26717,12 +26169,12 @@ export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Permission`. */ -export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Permission`. */ export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26735,19 +26187,19 @@ export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge permissionsByCreatedBlockId: PermissionsConnection; }; - /** A `Block` edge in the connection, with data from `Permission`. */ -export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePermissionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePermissionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26766,12 +26218,12 @@ export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ -export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26784,19 +26236,19 @@ export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToMa polyxTransactionsByUpdatedBlockId: PolyxTransactionsConnection; }; - /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ -export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePolyxTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePolyxTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26815,12 +26267,12 @@ export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ -export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26833,19 +26285,19 @@ export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToMa polyxTransactionsByCreatedBlockId: PolyxTransactionsConnection; }; - /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ -export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePolyxTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePolyxTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Portfolio`. */ export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26864,12 +26316,12 @@ export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Portfolio`. */ -export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Portfolio`. */ export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26882,19 +26334,19 @@ export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdge portfoliosByUpdatedBlockId: PortfoliosConnection; }; - /** A `Block` edge in the connection, with data from `Portfolio`. */ -export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -26913,12 +26365,12 @@ export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -26931,19 +26383,19 @@ export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToM portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -26962,12 +26414,12 @@ export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -26980,19 +26432,19 @@ export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToM portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Portfolio`. */ export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27011,12 +26463,12 @@ export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Portfolio`. */ -export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Portfolio`. */ export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27029,19 +26481,19 @@ export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdge portfoliosByCreatedBlockId: PortfoliosConnection; }; - /** A `Block` edge in the connection, with data from `Portfolio`. */ -export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Proposal`. */ export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27060,12 +26512,12 @@ export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Proposal`. */ -export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Proposal`. */ export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27078,19 +26530,19 @@ export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = proposalsByUpdatedBlockId: ProposalsConnection; }; - /** A `Block` edge in the connection, with data from `Proposal`. */ -export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeProposalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Proposal`. */ export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27109,12 +26561,12 @@ export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Proposal`. */ -export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Proposal`. */ export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27127,19 +26579,19 @@ export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = proposalsByCreatedBlockId: ProposalsConnection; }; - /** A `Block` edge in the connection, with data from `Proposal`. */ -export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeProposalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ProposalVote`. */ export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27158,12 +26610,12 @@ export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ProposalVote`. */ export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27176,19 +26628,19 @@ export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEd proposalVotesByUpdatedBlockId: ProposalVotesConnection; }; - /** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeProposalVotesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ProposalVote`. */ export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27207,12 +26659,12 @@ export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ProposalVote`. */ export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27225,19 +26677,19 @@ export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEd proposalVotesByCreatedBlockId: ProposalVotesConnection; }; - /** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeProposalVotesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StakingEvent`. */ export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27256,12 +26708,12 @@ export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StakingEvent`. */ -export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StakingEvent`. */ export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27274,19 +26726,19 @@ export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEd stakingEventsByUpdatedBlockId: StakingEventsConnection; }; - /** A `Block` edge in the connection, with data from `StakingEvent`. */ -export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStakingEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStakingEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StakingEvent`. */ export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27305,12 +26757,12 @@ export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StakingEvent`. */ -export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StakingEvent`. */ export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27323,19 +26775,19 @@ export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEd stakingEventsByCreatedBlockId: StakingEventsConnection; }; - /** A `Block` edge in the connection, with data from `StakingEvent`. */ -export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStakingEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStakingEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27354,12 +26806,12 @@ export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StatType`. */ -export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27372,19 +26824,19 @@ export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = statTypesByUpdatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27403,12 +26855,12 @@ export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StatType`. */ -export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27421,19 +26873,19 @@ export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = statTypesByCreatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27452,12 +26904,12 @@ export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27470,19 +26922,19 @@ export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { stosByUpdatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27501,12 +26953,12 @@ export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27519,43 +26971,44 @@ export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { stosByCreatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27568,43 +27021,44 @@ export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockI tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27617,19 +27071,19 @@ export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockI tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27648,12 +27102,12 @@ export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ -export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27666,43 +27120,44 @@ export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyT tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ -export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27715,43 +27170,44 @@ export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlock tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27764,19 +27220,19 @@ export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlock tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27795,12 +27251,12 @@ export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ -export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -27813,19 +27269,19 @@ export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyT tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ -export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -27844,12 +27300,12 @@ export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -27862,117 +27318,121 @@ export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyTo transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ - transferComplianceExemptionsByUpdatedBlockId: TransferComplianceExemptionsConnection; -}; - +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByUpdatedBlockId: TransferComplianceExemptionsConnection; + }; /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferComplianceExemptionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferComplianceExemptionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ - transferComplianceExemptionsByCreatedBlockId: TransferComplianceExemptionsConnection; -}; - +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByCreatedBlockId: TransferComplianceExemptionsConnection; + }; /** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ -export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferComplianceExemptionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferComplianceExemptionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -27991,12 +27451,12 @@ export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -28009,19 +27469,19 @@ export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyTo transferCompliancesByCreatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferManager`. */ export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -28040,12 +27500,12 @@ export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferManager`. */ -export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferManager`. */ export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -28058,19 +27518,19 @@ export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToMan transferManagersByUpdatedBlockId: TransferManagersConnection; }; - /** A `Block` edge in the connection, with data from `TransferManager`. */ -export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferManagersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferManagersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferManager`. */ export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -28089,12 +27549,12 @@ export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferManager`. */ -export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferManager`. */ export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -28107,19 +27567,19 @@ export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToMan transferManagersByCreatedBlockId: TransferManagersConnection; }; - /** A `Block` edge in the connection, with data from `TransferManager`. */ -export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferManagersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferManagersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -28138,12 +27598,12 @@ export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ -export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -28156,19 +27616,19 @@ export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyTo trustedClaimIssuersByUpdatedBlockId: TrustedClaimIssuersConnection; }; - /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ -export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTrustedClaimIssuersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTrustedClaimIssuersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -28187,12 +27647,12 @@ export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ -export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -28205,19 +27665,19 @@ export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyTo trustedClaimIssuersByCreatedBlockId: TrustedClaimIssuersConnection; }; - /** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ -export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTrustedClaimIssuersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTrustedClaimIssuersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Venue`. */ export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { @@ -28236,12 +27696,12 @@ export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Venue`. */ -export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Venue`. */ export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { @@ -28254,19 +27714,19 @@ export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { venuesByUpdatedBlockId: VenuesConnection; }; - /** A `Block` edge in the connection, with data from `Venue`. */ -export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeVenuesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Venue`. */ export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { @@ -28285,12 +27745,12 @@ export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Venue`. */ -export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Venue`. */ export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { @@ -28303,533 +27763,554 @@ export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { venuesByCreatedBlockId: VenuesConnection; }; - /** A `Block` edge in the connection, with data from `Venue`. */ -export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeVenuesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyEdge = { @@ -28842,43 +28323,44 @@ export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverI node?: Maybe; }; - /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyEdge = { @@ -28891,43 +28373,44 @@ export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdM node?: Maybe; }; - /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyEdge = { @@ -28940,43 +28423,44 @@ export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverI node?: Maybe; }; - /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyEdge = { @@ -28989,803 +28473,835 @@ export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdM node?: Maybe; }; - /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection = { - __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdge = { - __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdge = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdge = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdge = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdge = { - __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection = { - __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdge = { - __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection = { - __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdge = { - __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection = { - __typename?: 'BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdge = { - __typename?: 'BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - legs: ConfidentialLegsConnection; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdgeLegsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection = { - __typename?: 'BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdge = { - __typename?: 'BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - legs: ConfidentialLegsConnection; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdgeLegsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection = { - __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdge = { - __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - affirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection = { - __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdge = { - __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - affirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection = { - __typename?: 'BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialVenue`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialVenue` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialVenue` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialVenue`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialVenue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialVenue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdge = { - __typename?: 'BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ - confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialVenue` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdge = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialVenue` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdgeConfidentialTransactionsByVenueIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdgeConfidentialTransactionsByVenueIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection = { - __typename?: 'BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialVenue`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialVenue` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialVenue` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialVenue`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialVenue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialVenue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdge = { - __typename?: 'BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ - confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialVenue` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdge = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialVenue` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ -export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdgeConfidentialTransactionsByVenueIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdgeConfidentialTransactionsByVenueIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection = { @@ -29804,12 +29320,12 @@ export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ -export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { @@ -29822,19 +29338,19 @@ export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyTo node?: Maybe; }; - /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ -export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection = { @@ -29853,12 +29369,12 @@ export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ -export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { @@ -29871,43 +29387,44 @@ export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyTo node?: Maybe; }; - /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ -export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection = { - __typename?: 'BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `CustomClaimType` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `CustomClaimType` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection = + { + __typename?: 'BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { @@ -29920,43 +29437,44 @@ export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdMan statTypes: StatTypesConnection; }; - -/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ -export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection = { - __typename?: 'BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `CustomClaimType` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `CustomClaimType` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - - -/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection = + { + __typename?: 'BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { @@ -29969,19 +29487,19 @@ export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdMan statTypes: StatTypesConnection; }; - /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ -export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockDistinctCountAggregates = { __typename?: 'BlockDistinctCountAggregates'; @@ -30024,28 +29542,29 @@ export type BlockDistinctCountAggregates = { }; /** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ -export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection = { - __typename?: 'BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Distribution` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Distribution` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection = + { + __typename?: 'BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ -export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyEdge = { @@ -30058,43 +29577,44 @@ export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistribution node?: Maybe; }; - /** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ -export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ -export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection = { - __typename?: 'BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Distribution` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Distribution` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection = + { + __typename?: 'BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ -export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyEdge = { @@ -30107,19 +29627,19 @@ export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistribution node?: Maybe; }; - /** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ -export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Extrinsic` values, with data from `Event`. */ export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection = { @@ -30138,7 +29658,6 @@ export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Extrinsic` values, with data from `Event`. */ export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -30156,7 +29675,6 @@ export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge = { node?: Maybe; }; - /** A `Extrinsic` edge in the connection, with data from `Event`. */ export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdgeEventsArgs = { after?: InputMaybe; @@ -30187,12 +29705,12 @@ export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ -export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyEdge = { @@ -30205,19 +29723,19 @@ export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToM polyxTransactions: PolyxTransactionsConnection; }; - /** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ -export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyEdgePolyxTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyEdgePolyxTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnection = { @@ -30236,12 +29754,12 @@ export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ -export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyEdge = { @@ -30254,19 +29772,19 @@ export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToM polyxTransactions: PolyxTransactionsConnection; }; - /** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ -export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyEdgePolyxTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyEdgePolyxTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against `Block` object types. All fields are combined with a logical ‘and.’ */ export type BlockFilter = { @@ -30453,11 +29971,15 @@ export type BlockFilter = { /** Filter by the object’s `confidentialTransactionAffirmationsByCreatedBlockId` relation. */ confidentialTransactionAffirmationsByCreatedBlockId?: InputMaybe; /** Some related `confidentialTransactionAffirmationsByCreatedBlockId` exist. */ - confidentialTransactionAffirmationsByCreatedBlockIdExist?: InputMaybe; + confidentialTransactionAffirmationsByCreatedBlockIdExist?: InputMaybe< + Scalars['Boolean']['input'] + >; /** Filter by the object’s `confidentialTransactionAffirmationsByUpdatedBlockId` relation. */ confidentialTransactionAffirmationsByUpdatedBlockId?: InputMaybe; /** Some related `confidentialTransactionAffirmationsByUpdatedBlockId` exist. */ - confidentialTransactionAffirmationsByUpdatedBlockIdExist?: InputMaybe; + confidentialTransactionAffirmationsByUpdatedBlockIdExist?: InputMaybe< + Scalars['Boolean']['input'] + >; /** Filter by the object’s `confidentialTransactionsByCreatedBlockId` relation. */ confidentialTransactionsByCreatedBlockId?: InputMaybe; /** Some related `confidentialTransactionsByCreatedBlockId` exist. */ @@ -30815,12 +30337,12 @@ export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Account`. */ -export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Account`. */ export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -30833,19 +30355,19 @@ export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdge = secondaryAccounts: AccountsConnection; }; - /** A `Identity` edge in the connection, with data from `Account`. */ -export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Account`. */ export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -30864,12 +30386,12 @@ export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Account`. */ -export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Account`. */ export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -30882,19 +30404,19 @@ export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdge = secondaryAccounts: AccountsConnection; }; - /** A `Identity` edge in the connection, with data from `Account`. */ -export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Asset`. */ export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnection = { @@ -30913,12 +30435,12 @@ export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Asset`. */ -export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Asset`. */ export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyEdge = { @@ -30931,7 +30453,6 @@ export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Asset`. */ export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyEdgeAssetsByOwnerIdArgs = { after?: InputMaybe; @@ -30962,12 +30483,12 @@ export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetHolder`. */ -export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetHolder`. */ export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -30980,7 +30501,6 @@ export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetHolder`. */ export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyEdgeHeldAssetsArgs = { after?: InputMaybe; @@ -31011,12 +30531,12 @@ export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetHolder`. */ -export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetHolder`. */ export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -31029,7 +30549,6 @@ export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetHolder`. */ export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdgeHeldAssetsArgs = { after?: InputMaybe; @@ -31044,28 +30563,29 @@ export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdg }; /** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ -export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ -export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyEdge = { @@ -31078,43 +30598,44 @@ export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdMan node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ -export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ -export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyEdge = { @@ -31127,19 +30648,19 @@ export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdMan node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -31158,12 +30679,12 @@ export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ -export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -31176,19 +30697,19 @@ export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ -export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -31207,12 +30728,12 @@ export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ -export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -31225,19 +30746,19 @@ export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ -export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Asset`. */ export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnection = { @@ -31256,12 +30777,12 @@ export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Asset`. */ -export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Asset`. */ export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyEdge = { @@ -31274,7 +30795,6 @@ export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Asset`. */ export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyEdgeAssetsByOwnerIdArgs = { after?: InputMaybe; @@ -31305,12 +30825,12 @@ export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Authorization`. */ -export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Authorization`. */ export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdge = { @@ -31323,19 +30843,19 @@ export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Authorization`. */ -export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdgeAuthorizationsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdgeAuthorizationsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Authorization`. */ export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnection = { @@ -31354,12 +30874,12 @@ export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Authorization`. */ -export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Authorization`. */ export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdge = { @@ -31372,19 +30892,19 @@ export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Authorization`. */ -export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdgeAuthorizationsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdgeAuthorizationsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -31403,12 +30923,12 @@ export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ -export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `BridgeEvent`. */ export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -31421,19 +30941,19 @@ export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `BridgeEvent`. */ -export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdgeBridgeEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdgeBridgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -31452,12 +30972,12 @@ export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ -export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `BridgeEvent`. */ export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -31470,19 +30990,19 @@ export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `BridgeEvent`. */ -export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdgeBridgeEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdgeBridgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnection = { @@ -31501,12 +31021,12 @@ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ -export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdge = { @@ -31519,19 +31039,19 @@ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdge parentChildIdentities: ChildIdentitiesConnection; }; - /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ -export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnection = { @@ -31550,12 +31070,12 @@ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ -export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyEdge = { @@ -31568,7 +31088,6 @@ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyEdgeChildrenArgs = { after?: InputMaybe; @@ -31599,12 +31118,12 @@ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ -export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdge = { @@ -31617,19 +31136,19 @@ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdge parentChildIdentities: ChildIdentitiesConnection; }; - /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ -export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnection = { @@ -31648,12 +31167,12 @@ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ -export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyEdge = { @@ -31666,7 +31185,6 @@ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyEdg node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyEdgeChildrenArgs = { after?: InputMaybe; @@ -31697,12 +31215,12 @@ export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyEdge = { @@ -31715,7 +31233,6 @@ export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { after?: InputMaybe; @@ -31746,12 +31263,12 @@ export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyEdge = { @@ -31764,7 +31281,6 @@ export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { after?: InputMaybe; @@ -31795,12 +31311,12 @@ export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyEdge = { @@ -31813,7 +31329,6 @@ export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { after?: InputMaybe; @@ -31844,12 +31359,12 @@ export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdge = { @@ -31862,7 +31377,6 @@ export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { after?: InputMaybe; @@ -31893,12 +31407,12 @@ export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ -export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyEdge = { @@ -31911,19 +31425,19 @@ export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyTo node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ -export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAccountsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAccountsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnection = { @@ -31942,12 +31456,12 @@ export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ -export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyEdge = { @@ -31960,19 +31474,19 @@ export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyTo node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ -export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAccountsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAccountsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnection = { @@ -31991,12 +31505,12 @@ export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ -export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32009,19 +31523,19 @@ export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ -export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAssetsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAssetsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32040,12 +31554,12 @@ export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ -export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32058,117 +31572,121 @@ export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ -export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAssetsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAssetsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdge = { - __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Identity` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdge = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdge = { - __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Identity` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdge = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32187,12 +31705,12 @@ export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ -export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32205,19 +31723,19 @@ export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ -export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialVenuesByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialVenuesByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32236,12 +31754,12 @@ export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ -export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32254,19 +31772,19 @@ export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ -export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialVenuesByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialVenuesByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -32285,12 +31803,12 @@ export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ -export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `CustomClaimType`. */ export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -32303,19 +31821,19 @@ export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToMan node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `CustomClaimType`. */ -export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -32334,12 +31852,12 @@ export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ -export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `CustomClaimType`. */ export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -32352,19 +31870,19 @@ export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToMan node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `CustomClaimType`. */ -export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Distribution`. */ export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -32383,12 +31901,12 @@ export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Distribution`. */ -export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Distribution`. */ export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -32401,19 +31919,19 @@ export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEd node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Distribution`. */ -export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEdgeDistributionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnection = { @@ -32432,12 +31950,12 @@ export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ -export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `DistributionPayment`. */ export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyEdge = { @@ -32450,19 +31968,19 @@ export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToM node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `DistributionPayment`. */ -export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnection = { @@ -32481,12 +31999,12 @@ export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ -export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `DistributionPayment`. */ export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyEdge = { @@ -32499,19 +32017,19 @@ export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToM node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `DistributionPayment`. */ -export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Distribution`. */ export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -32530,12 +32048,12 @@ export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Distribution`. */ -export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Distribution`. */ export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -32548,19 +32066,19 @@ export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEd node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Distribution`. */ -export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEdgeDistributionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Investment`. */ export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnection = { @@ -32579,12 +32097,12 @@ export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Investment`. */ -export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Investment`. */ export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdge = { @@ -32597,19 +32115,19 @@ export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Investment`. */ -export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdgeInvestmentsByInvestorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdgeInvestmentsByInvestorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Investment`. */ export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnection = { @@ -32628,12 +32146,12 @@ export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Investment`. */ -export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Investment`. */ export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdge = { @@ -32646,19 +32164,19 @@ export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Investment`. */ -export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdgeInvestmentsByInvestorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdgeInvestmentsByInvestorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `MultiSig`. */ export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32677,12 +32195,12 @@ export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `MultiSig`. */ -export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `MultiSig`. */ export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32695,19 +32213,19 @@ export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdge = node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `MultiSig`. */ -export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32726,12 +32244,12 @@ export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ -export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32744,19 +32262,19 @@ export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToMan node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ -export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32775,12 +32293,12 @@ export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ -export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32793,19 +32311,19 @@ export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToMan node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ -export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `MultiSig`. */ export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnection = { @@ -32824,12 +32342,12 @@ export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `MultiSig`. */ -export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `MultiSig`. */ export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdge = { @@ -32842,19 +32360,19 @@ export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdge = node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `MultiSig`. */ -export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `NftHolder`. */ export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -32873,12 +32391,12 @@ export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `NftHolder`. */ -export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `NftHolder`. */ export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -32891,7 +32409,6 @@ export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `NftHolder`. */ export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyEdgeHeldNftsArgs = { after?: InputMaybe; @@ -32922,12 +32439,12 @@ export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `NftHolder`. */ -export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `NftHolder`. */ export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -32940,7 +32457,6 @@ export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyEdge node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `NftHolder`. */ export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyEdgeHeldNftsArgs = { after?: InputMaybe; @@ -32971,12 +32487,12 @@ export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Portfolio`. */ -export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdge = { @@ -32989,19 +32505,19 @@ export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdge portfoliosByCustodianId: PortfoliosConnection; }; - /** A `Identity` edge in the connection, with data from `Portfolio`. */ -export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -33020,12 +32536,12 @@ export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Portfolio`. */ -export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -33038,7 +32554,6 @@ export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyEdge portfolios: PortfoliosConnection; }; - /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyEdgePortfoliosArgs = { after?: InputMaybe; @@ -33069,12 +32584,12 @@ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Portfolio`. */ -export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdge = { @@ -33087,19 +32602,19 @@ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdge portfoliosByCustodianId: PortfoliosConnection; }; - /** A `Identity` edge in the connection, with data from `Portfolio`. */ -export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -33118,12 +32633,12 @@ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Portfolio`. */ -export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -33136,7 +32651,6 @@ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyEdge portfolios: PortfoliosConnection; }; - /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyEdgePortfoliosArgs = { after?: InputMaybe; @@ -33167,12 +32681,12 @@ export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Proposal`. */ -export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Proposal`. */ export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdge = { @@ -33185,19 +32699,19 @@ export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdge = { proposalsByOwnerId: ProposalsConnection; }; - /** A `Identity` edge in the connection, with data from `Proposal`. */ -export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdgeProposalsByOwnerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdgeProposalsByOwnerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Proposal`. */ export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnection = { @@ -33216,12 +32730,12 @@ export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Proposal`. */ -export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Proposal`. */ export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdge = { @@ -33234,19 +32748,19 @@ export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdge = { proposalsByOwnerId: ProposalsConnection; }; - /** A `Identity` edge in the connection, with data from `Proposal`. */ -export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdgeProposalsByOwnerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdgeProposalsByOwnerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `StakingEvent`. */ export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnection = { @@ -33265,12 +32779,12 @@ export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `StakingEvent`. */ -export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `StakingEvent`. */ export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -33283,19 +32797,19 @@ export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEd stakingEvents: StakingEventsConnection; }; - /** A `Identity` edge in the connection, with data from `StakingEvent`. */ -export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEdgeStakingEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEdgeStakingEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `StakingEvent`. */ export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnection = { @@ -33314,12 +32828,12 @@ export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `StakingEvent`. */ -export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `StakingEvent`. */ export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -33332,19 +32846,19 @@ export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEd stakingEvents: StakingEventsConnection; }; - /** A `Identity` edge in the connection, with data from `StakingEvent`. */ -export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEdgeStakingEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEdgeStakingEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `StatType`. */ export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnection = { @@ -33363,12 +32877,12 @@ export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `StatType`. */ -export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `StatType`. */ export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdge = { @@ -33381,19 +32895,19 @@ export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdg statTypesByClaimIssuerId: StatTypesConnection; }; - /** A `Identity` edge in the connection, with data from `StatType`. */ -export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `StatType`. */ export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnection = { @@ -33412,12 +32926,12 @@ export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `StatType`. */ -export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `StatType`. */ export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdge = { @@ -33430,19 +32944,19 @@ export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdg statTypesByClaimIssuerId: StatTypesConnection; }; - /** A `Identity` edge in the connection, with data from `StatType`. */ -export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Sto`. */ export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnection = { @@ -33461,12 +32975,12 @@ export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Sto`. */ -export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Sto`. */ export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyEdge = { @@ -33479,7 +32993,6 @@ export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyEdge = { stosByCreatorId: StosConnection; }; - /** A `Identity` edge in the connection, with data from `Sto`. */ export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { after?: InputMaybe; @@ -33510,12 +33023,12 @@ export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Sto`. */ -export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Sto`. */ export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdge = { @@ -33528,7 +33041,6 @@ export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdge = { stosByCreatorId: StosConnection; }; - /** A `Identity` edge in the connection, with data from `Sto`. */ export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { after?: InputMaybe; @@ -33543,28 +33055,29 @@ export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdgeStosByCr }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ -export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ -export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyEdge = { @@ -33577,43 +33090,44 @@ export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdM tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ -export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ -export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyEdge = { @@ -33626,19 +33140,19 @@ export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdM tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnection = { @@ -33657,12 +33171,12 @@ export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ -export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyEdge = { @@ -33675,43 +33189,44 @@ export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToM tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ -export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ -export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ -export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyEdge = { @@ -33724,43 +33239,44 @@ export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentity tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ -export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ -export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyEdge = { @@ -33773,19 +33289,19 @@ export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentity tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnection = { @@ -33804,12 +33320,12 @@ export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ -export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyEdge = { @@ -33822,43 +33338,44 @@ export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToM tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; }; - /** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ -export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ -export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ -export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyEdge = { @@ -33871,43 +33388,44 @@ export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdMan transferCompliancesByClaimIssuerId: TransferCompliancesConnection; }; - /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ -export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ -export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection = { - __typename?: 'BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ -export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyEdge = { @@ -33920,19 +33438,19 @@ export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdMan transferCompliancesByClaimIssuerId: TransferCompliancesConnection; }; - /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ -export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Venue`. */ export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnection = { @@ -33951,12 +33469,12 @@ export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Venue`. */ -export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Venue`. */ export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyEdge = { @@ -33969,7 +33487,6 @@ export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyEdge = { venuesByOwnerId: VenuesConnection; }; - /** A `Identity` edge in the connection, with data from `Venue`. */ export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyEdgeVenuesByOwnerIdArgs = { after?: InputMaybe; @@ -34000,12 +33517,12 @@ export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Venue`. */ -export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Venue`. */ export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdge = { @@ -34018,7 +33535,6 @@ export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdge = { venuesByOwnerId: VenuesConnection; }; - /** A `Identity` edge in the connection, with data from `Venue`. */ export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdgeVenuesByOwnerIdArgs = { after?: InputMaybe; @@ -34033,126 +33549,131 @@ export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdgeVenuesBy }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection = { - __typename?: 'BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `InstructionParty` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `InstructionParty` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdge = { - __typename?: 'BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `InstructionParty` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdge = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection = { - __typename?: 'BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `InstructionParty` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `InstructionParty` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdge = { - __typename?: 'BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `InstructionParty` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdge = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34165,43 +33686,44 @@ export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdMan node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ -export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34214,190 +33736,196 @@ export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdMan node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ -export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdge = + { + __typename?: 'BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdge = { - __typename?: 'BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdge = + { + __typename?: 'BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdge'; /** A cursor for use in pagination. */ cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + events: InstructionEventsConnection; /** The `Instruction` at the end of the edge. */ node?: Maybe; }; - -/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - - -/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdge = { - __typename?: 'BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Instruction` at the end of the edge. */ - node?: Maybe; -}; - - -/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - - -/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdge = { - __typename?: 'BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - events: InstructionEventsConnection; - /** The `Instruction` at the end of the edge. */ - node?: Maybe; -}; - - -/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdgeEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34410,43 +33938,44 @@ export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdMan node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ -export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyEdgeEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyEdgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ -export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionParty`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ -export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionParty`. */ export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34459,43 +33988,44 @@ export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdMan parties: InstructionPartiesConnection; }; - /** A `Instruction` edge in the connection, with data from `InstructionParty`. */ -export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyEdgePartiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyEdgePartiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ -export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection = { - __typename?: 'BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionParty`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ -export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionParty`. */ export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34508,19 +34038,19 @@ export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdMan parties: InstructionPartiesConnection; }; - /** A `Instruction` edge in the connection, with data from `InstructionParty`. */ -export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyEdgePartiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyEdgePartiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `Leg`. */ export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection = { @@ -34539,12 +34069,12 @@ export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Instruction` values, with data from `Leg`. */ -export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `Leg`. */ export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34557,7 +34087,6 @@ export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyEdge = node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `Leg`. */ export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyEdgeLegsArgs = { after?: InputMaybe; @@ -34588,12 +34117,12 @@ export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Instruction` values, with data from `Leg`. */ -export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `Leg`. */ export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyEdge = { @@ -34606,7 +34135,6 @@ export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyEdge = node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `Leg`. */ export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyEdgeLegsArgs = { after?: InputMaybe; @@ -34637,12 +34165,12 @@ export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Leg` values, with data from `OffChainReceipt`. */ -export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyEdge = { @@ -34655,7 +34183,6 @@ export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyEdge = { offChainReceipts: OffChainReceiptsConnection; }; - /** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyEdgeOffChainReceiptsArgs = { after?: InputMaybe; @@ -34686,12 +34213,12 @@ export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Leg` values, with data from `OffChainReceipt`. */ -export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyEdge = { @@ -34704,7 +34231,6 @@ export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyEdge = { offChainReceipts: OffChainReceiptsConnection; }; - /** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyEdgeOffChainReceiptsArgs = { after?: InputMaybe; @@ -34763,126 +34289,131 @@ export type BlockMinAggregates = { }; /** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection = { - __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `MultiSigProposal` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `MultiSigProposal` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge = { - __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `MultiSigProposal` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ - votes: MultiSigProposalVotesConnection; -}; - +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; /** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection = { - __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `MultiSigProposal` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `MultiSigProposal` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge = { - __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `MultiSigProposal` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ - votes: MultiSigProposalVotesConnection; -}; - +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; /** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection = { - __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `MultiSigSigner` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `MultiSigSigner` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection = + { + __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyEdge = { @@ -34895,43 +34426,44 @@ export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdM votes: MultiSigProposalVotesConnection; }; - /** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyEdgeVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection = { - __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `MultiSigSigner` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `MultiSigSigner` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection = + { + __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyEdge = { @@ -34944,19 +34476,19 @@ export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdM votes: MultiSigProposalVotesConnection; }; - /** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ -export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyEdgeVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSig` values, with data from `MultiSigAdmin`. */ export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyConnection = { @@ -34975,12 +34507,12 @@ export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigAdmin`. */ -export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigAdmin`. */ export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyEdge = { @@ -34993,7 +34525,6 @@ export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyEd node?: Maybe; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigAdmin`. */ export type BlockMultiSigsByMultiSigAdminCreatedBlockIdAndMultisigIdManyToManyEdgeAdminsArgs = { after?: InputMaybe; @@ -35024,12 +34555,12 @@ export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigAdmin`. */ -export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigAdmin`. */ export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdManyToManyEdge = { @@ -35042,7 +34573,6 @@ export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdManyToManyEd node?: Maybe; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigAdmin`. */ export type BlockMultiSigsByMultiSigAdminUpdatedBlockIdAndMultisigIdManyToManyEdgeAdminsArgs = { after?: InputMaybe; @@ -35073,12 +34603,12 @@ export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ -export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyEdge = { @@ -35091,19 +34621,19 @@ export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToMan proposals: MultiSigProposalsConnection; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ -export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyEdgeProposalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyEdgeProposalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnection = { @@ -35122,12 +34652,12 @@ export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ -export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyEdge = { @@ -35140,19 +34670,19 @@ export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToMan proposals: MultiSigProposalsConnection; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ -export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyEdgeProposalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyEdgeProposalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnection = { @@ -35171,12 +34701,12 @@ export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ -export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyEdge = { @@ -35189,7 +34719,6 @@ export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyE signers: MultiSigSignersConnection; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyEdgeSignersArgs = { after?: InputMaybe; @@ -35220,12 +34749,12 @@ export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ -export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyEdge = { @@ -35238,7 +34767,6 @@ export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyE signers: MultiSigSignersConnection; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyEdgeSignersArgs = { after?: InputMaybe; @@ -35253,200 +34781,208 @@ export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyE }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmations: InstructionAffirmationsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmations: InstructionAffirmationsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - instructionEvents: InstructionEventsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - instructionEvents: InstructionEventsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ -export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Permission` values, with data from `Account`. */ export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnection = { @@ -35465,12 +35001,12 @@ export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Permission` values, with data from `Account`. */ -export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Permission` edge in the connection, with data from `Account`. */ export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdge = { @@ -35483,19 +35019,19 @@ export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdg node?: Maybe; }; - /** A `Permission` edge in the connection, with data from `Account`. */ -export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Permission` values, with data from `Account`. */ export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnection = { @@ -35514,12 +35050,12 @@ export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Permission` values, with data from `Account`. */ -export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Permission` edge in the connection, with data from `Account`. */ export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdge = { @@ -35532,43 +35068,44 @@ export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdg node?: Maybe; }; - /** A `Permission` edge in the connection, with data from `Account`. */ -export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection = { - __typename?: 'BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Portfolio` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Portfolio` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyEdge = { @@ -35581,19 +35118,19 @@ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdMan node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnection = { @@ -35612,12 +35149,12 @@ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyEdge = { @@ -35630,43 +35167,44 @@ export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyT node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection = { - __typename?: 'BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Portfolio` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Portfolio` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyEdge = { @@ -35679,19 +35217,19 @@ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdMan node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnection = { @@ -35710,12 +35248,12 @@ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyEdge = { @@ -35728,19 +35266,19 @@ export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyT node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnection = { @@ -35759,12 +35297,12 @@ export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ -export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyEdge = { @@ -35777,19 +35315,19 @@ export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyE node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `Distribution`. */ -export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyEdgeDistributionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnection = { @@ -35808,12 +35346,12 @@ export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ -export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyEdge = { @@ -35826,19 +35364,19 @@ export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyE node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `Distribution`. */ -export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyEdgeDistributionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnection = { @@ -35857,12 +35395,12 @@ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyEdge = { @@ -35875,19 +35413,19 @@ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyE portfolioMovementsByFromId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnection = { @@ -35906,12 +35444,12 @@ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdge = { @@ -35924,19 +35462,19 @@ export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdg portfolioMovementsByToId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnection = { @@ -35955,12 +35493,12 @@ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyEdge = { @@ -35973,19 +35511,19 @@ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyE portfolioMovementsByFromId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnection = { @@ -36004,12 +35542,12 @@ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdge = { @@ -36022,19 +35560,19 @@ export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdg portfolioMovementsByToId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnection = { @@ -36053,12 +35591,12 @@ export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEdge = { @@ -36071,19 +35609,19 @@ export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEd stosByOfferingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnection = { @@ -36102,12 +35640,12 @@ export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdge = { @@ -36120,19 +35658,19 @@ export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdg stosByRaisingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnection = { @@ -36151,12 +35689,12 @@ export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEdge = { @@ -36169,19 +35707,19 @@ export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEd stosByOfferingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnection = { @@ -36200,12 +35738,12 @@ export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdge = { @@ -36218,19 +35756,19 @@ export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdg stosByRaisingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection = { @@ -36249,12 +35787,12 @@ export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ -export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Proposal` edge in the connection, with data from `ProposalVote`. */ export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge = { @@ -36267,7 +35805,6 @@ export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyEdg votes: ProposalVotesConnection; }; - /** A `Proposal` edge in the connection, with data from `ProposalVote`. */ export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = { after?: InputMaybe; @@ -36298,12 +35835,12 @@ export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ -export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Proposal` edge in the connection, with data from `ProposalVote`. */ export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge = { @@ -36316,7 +35853,6 @@ export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdg votes: ProposalVotesConnection; }; - /** A `Proposal` edge in the connection, with data from `ProposalVote`. */ export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = { after?: InputMaybe; @@ -36347,12 +35883,12 @@ export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ -export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyEdge = { @@ -36365,19 +35901,19 @@ export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToM transferCompliances: TransferCompliancesConnection; }; - /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ -export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnection = { @@ -36396,12 +35932,12 @@ export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ -export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyEdge = { @@ -36414,19 +35950,19 @@ export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToM transferCompliances: TransferCompliancesConnection; }; - /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ -export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type BlockStddevPopulationAggregates = { __typename?: 'BlockStddevPopulationAggregates'; @@ -37299,12 +36835,12 @@ export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Instruction`. */ -export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Venue` edge in the connection, with data from `Instruction`. */ export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyEdge = { @@ -37317,7 +36853,6 @@ export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyEdge = { node?: Maybe; }; - /** A `Venue` edge in the connection, with data from `Instruction`. */ export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyEdgeInstructionsArgs = { after?: InputMaybe; @@ -37348,12 +36883,12 @@ export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Instruction`. */ -export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Venue` edge in the connection, with data from `Instruction`. */ export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyEdge = { @@ -37366,7 +36901,6 @@ export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyEdge = { node?: Maybe; }; - /** A `Venue` edge in the connection, with data from `Instruction`. */ export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyEdgeInstructionsArgs = { after?: InputMaybe; @@ -37397,7 +36931,6 @@ export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Sto`. */ export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -37415,7 +36948,6 @@ export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyEdge = { stos: StosConnection; }; - /** A `Venue` edge in the connection, with data from `Sto`. */ export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyEdgeStosArgs = { after?: InputMaybe; @@ -37446,7 +36978,6 @@ export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Sto`. */ export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -37464,7 +36995,6 @@ export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyEdge = { stos: StosConnection; }; - /** A `Venue` edge in the connection, with data from `Sto`. */ export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyEdgeStosArgs = { after?: InputMaybe; @@ -37495,7 +37025,6 @@ export type BlocksConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values. */ export type BlocksConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -37530,7 +37059,7 @@ export enum BlocksGroupBy { ParentHash = 'PARENT_HASH', ParentId = 'PARENT_ID', SpecVersionId = 'SPEC_VERSION_ID', - StateRoot = 'STATE_ROOT' + StateRoot = 'STATE_ROOT', } export type BlocksHavingAverageInput = { @@ -62794,7 +62323,7 @@ export enum BlocksOrderBy { VenuesByUpdatedBlockIdVarianceSampleTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', VenuesByUpdatedBlockIdVarianceSampleTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', VenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', - VenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC' + VenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', } /** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */ @@ -63092,7 +62621,6 @@ export type BridgeEventsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `BridgeEvent` values. */ export type BridgeEventsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -63123,7 +62651,7 @@ export enum BridgeEventsGroupBy { IdentityId = 'IDENTITY_ID', Recipient = 'RECIPIENT', TxHash = 'TX_HASH', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type BridgeEventsHavingAverageInput = { @@ -63228,7 +62756,7 @@ export enum BridgeEventsOrderBy { TxHashAsc = 'TX_HASH_ASC', TxHashDesc = 'TX_HASH_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** Represents all known chain extrinsics */ @@ -63730,7 +63258,7 @@ export enum CallIdEnum { WithdrawAffirmationAsMediator = 'withdraw_affirmation_as_mediator', WithdrawAffirmationV2 = 'withdraw_affirmation_v2', WithdrawAffirmationWithCount = 'withdraw_affirmation_with_count', - WithdrawUnbonded = 'withdraw_unbonded' + WithdrawUnbonded = 'withdraw_unbonded', } /** A filter to be used against CallIdEnum fields. All fields are combined with a logical ‘and.’ */ @@ -63776,7 +63304,6 @@ export type ChildIdentitiesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ChildIdentity` values. */ export type ChildIdentitiesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -63801,7 +63328,7 @@ export enum ChildIdentitiesGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', ParentId = 'PARENT_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ChildIdentitiesHavingAverageInput = { @@ -63871,7 +63398,7 @@ export enum ChildIdentitiesOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ChildIdentity = Node & { @@ -64362,7 +63889,6 @@ export type ClaimScopesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ClaimScope` values. */ export type ClaimScopesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -64388,7 +63914,7 @@ export enum ClaimScopesGroupBy { Id = 'ID', Scope = 'SCOPE', Target = 'TARGET', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ClaimScopesHavingAverageInput = { @@ -64460,7 +63986,7 @@ export enum ClaimScopesOrderBy { TargetAsc = 'TARGET_ASC', TargetDesc = 'TARGET_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ClaimStddevPopulationAggregateFilter = { @@ -64553,7 +64079,7 @@ export enum ClaimTypeEnum { KnowYourCustomer = 'KnowYourCustomer', NoData = 'NoData', NoType = 'NoType', - SellLockup = 'SellLockup' + SellLockup = 'SellLockup', } /** A filter to be used against ClaimTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -64649,7 +64175,6 @@ export type ClaimsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Claim` values. */ export type ClaimsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -64685,7 +64210,7 @@ export enum ClaimsGroupBy { Scope = 'SCOPE', TargetId = 'TARGET_ID', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ClaimsHavingAverageInput = { @@ -64831,7 +64356,7 @@ export enum ClaimsOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Compliance = Node & { @@ -65061,7 +64586,6 @@ export type CompliancesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Compliance` values. */ export type CompliancesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -65087,7 +64611,7 @@ export enum CompliancesGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', Data = 'DATA', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type CompliancesHavingAverageInput = { @@ -65168,7 +64692,7 @@ export enum CompliancesOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialAccount = Node & { @@ -65273,7 +64797,6 @@ export type ConfidentialAccount = Node & { updatedBlockId: Scalars['String']['output']; }; - export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65286,7 +64809,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedB orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65299,7 +64821,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedB orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65312,7 +64833,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlo orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65325,7 +64845,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlo orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65338,7 +64857,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreate orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65351,7 +64869,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdate orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65364,7 +64881,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreated orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65377,7 +64893,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdated orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65390,7 +64905,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBl orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65403,7 +64917,6 @@ export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBl orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65416,7 +64929,6 @@ export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockI orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65429,7 +64941,6 @@ export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockI orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65442,7 +64953,6 @@ export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdA orderBy?: InputMaybe>; }; - export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65455,32 +64965,31 @@ export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdA orderBy?: InputMaybe>; }; - -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdArgs = { after?: InputMaybe; @@ -65494,7 +65003,6 @@ export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFro orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65507,7 +65015,6 @@ export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToI orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65520,7 +65027,6 @@ export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFr orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65533,7 +65039,6 @@ export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementTo orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65546,7 +65051,6 @@ export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAn orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65559,7 +65063,6 @@ export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndR orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetHistoriesByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65572,7 +65075,6 @@ export type ConfidentialAccountConfidentialAssetHistoriesByFromIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetHistoriesByToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65585,7 +65087,6 @@ export type ConfidentialAccountConfidentialAssetHistoriesByToIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetHoldersByAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65598,7 +65099,6 @@ export type ConfidentialAccountConfidentialAssetHoldersByAccountIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetMovementsByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65611,7 +65111,6 @@ export type ConfidentialAccountConfidentialAssetMovementsByFromIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetMovementsByToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65624,7 +65123,6 @@ export type ConfidentialAccountConfidentialAssetMovementsByToIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65637,7 +65135,6 @@ export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromI orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65650,19 +65147,18 @@ export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdA orderBy?: InputMaybe>; }; - -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdArgs = { after?: InputMaybe; @@ -65676,7 +65172,6 @@ export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFrom orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65689,7 +65184,6 @@ export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToId orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialLegsByReceiverIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65702,7 +65196,6 @@ export type ConfidentialAccountConfidentialLegsByReceiverIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialLegsBySenderIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65715,7 +65208,6 @@ export type ConfidentialAccountConfidentialLegsBySenderIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAccountConfidentialTransactionAffirmationsByAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -65728,83 +65220,83 @@ export type ConfidentialAccountConfidentialTransactionAffirmationsByAccountIdArg orderBy?: InputMaybe>; }; - -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAccountAggregates = { __typename?: 'ConfidentialAccountAggregates'; @@ -65864,518 +65356,539 @@ export type ConfidentialAccountAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyEdge = { @@ -66388,43 +65901,44 @@ export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockI node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyEdge = { @@ -66437,43 +65951,44 @@ export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockI node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyEdge = { @@ -66486,43 +66001,44 @@ export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyEdge = { @@ -66535,901 +66051,937 @@ export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - confidentialLegsBySenderId: ConfidentialLegsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; -/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - confidentialLegsByReceiverId: ConfidentialLegsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - legs: ConfidentialLegsConnection; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdgeLegsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - legs: ConfidentialLegsConnection; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdgeLegsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdge = { - __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - affirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAccountDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -67533,53 +67085,55 @@ export type ConfidentialAccountFilter = { }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection = { - __typename?: 'ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdge = { - __typename?: 'ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Identity` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAccountMaxAggregateFilter = { eventIdx?: InputMaybe; @@ -67728,7 +67282,6 @@ export type ConfidentialAccountsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialAccount` values. */ export type ConfidentialAccountsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -67755,7 +67308,7 @@ export enum ConfidentialAccountsGroupBy { EventIdx = 'EVENT_IDX', FrozenForAsset = 'FROZEN_FOR_ASSET', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ConfidentialAccountsHavingAverageInput = { @@ -69474,7 +69027,7 @@ export enum ConfidentialAccountsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialAsset = Node & { @@ -69534,7 +69087,6 @@ export type ConfidentialAsset = Node & { venueFiltering: Scalars['Boolean']['output']; }; - export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69547,7 +69099,6 @@ export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBl orderBy?: InputMaybe>; }; - export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69560,7 +69111,6 @@ export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBl orderBy?: InputMaybe>; }; - export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69573,7 +69123,6 @@ export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlo orderBy?: InputMaybe>; }; - export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69586,7 +69135,6 @@ export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlo orderBy?: InputMaybe>; }; - export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69599,7 +69147,6 @@ export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedB orderBy?: InputMaybe>; }; - export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69612,7 +69159,6 @@ export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedB orderBy?: InputMaybe>; }; - export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69625,7 +69171,6 @@ export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAsset orderBy?: InputMaybe>; }; - export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69638,19 +69183,18 @@ export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAsset orderBy?: InputMaybe>; }; - -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdArgs = { after?: InputMaybe; @@ -69664,7 +69208,6 @@ export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAsse orderBy?: InputMaybe>; }; - export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69677,7 +69220,6 @@ export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAsse orderBy?: InputMaybe>; }; - export type ConfidentialAssetConfidentialAssetHistoriesByAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69690,7 +69232,6 @@ export type ConfidentialAssetConfidentialAssetHistoriesByAssetIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAssetConfidentialAssetHoldersByAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69703,7 +69244,6 @@ export type ConfidentialAssetConfidentialAssetHoldersByAssetIdArgs = { orderBy?: InputMaybe>; }; - export type ConfidentialAssetConfidentialAssetMovementsByAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -69716,18 +69256,18 @@ export type ConfidentialAssetConfidentialAssetMovementsByAssetIdArgs = { orderBy?: InputMaybe>; }; - -export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAssetAggregates = { __typename?: 'ConfidentialAssetAggregates'; @@ -69783,599 +69323,623 @@ export type ConfidentialAssetAverageAggregateFilter = { export type ConfidentialAssetAverageAggregates = { __typename?: 'ConfidentialAssetAverageAggregates'; - /** Mean average of eventIdx across the matching connection */ - eventIdx?: Maybe; - /** Mean average of totalSupply across the matching connection */ - totalSupply?: Maybe; -}; - -/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - - -/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - - -/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - - -/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - - -/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of totalSupply across the matching connection */ + totalSupply?: Maybe; }; +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; -/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdge = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdge = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdge = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ - confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdge = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdge = { - __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ - confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ -export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection = { - __typename?: 'ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdge = { - __typename?: 'ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialAssetDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -70510,7 +70074,6 @@ export type ConfidentialAssetHistoriesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialAssetHistory` values. */ export type ConfidentialAssetHistoriesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -70545,7 +70108,7 @@ export enum ConfidentialAssetHistoriesGroupBy { Memo = 'MEMO', ToId = 'TO_ID', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ConfidentialAssetHistoriesHavingAverageInput = { @@ -70658,7 +70221,7 @@ export enum ConfidentialAssetHistoriesOrderBy { TransactionIdAsc = 'TRANSACTION_ID_ASC', TransactionIdDesc = 'TRANSACTION_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialAssetHistory = Node & { @@ -71193,7 +70756,6 @@ export type ConfidentialAssetHoldersConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialAssetHolder` values. */ export type ConfidentialAssetHoldersConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -71220,7 +70782,7 @@ export enum ConfidentialAssetHoldersGroupBy { CreatedBlockId = 'CREATED_BLOCK_ID', EventIdx = 'EVENT_IDX', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ConfidentialAssetHoldersHavingAverageInput = { @@ -71303,7 +70865,7 @@ export enum ConfidentialAssetHoldersOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialAssetMaxAggregateFilter = { @@ -71461,7 +71023,6 @@ export type ConfidentialAssetMovementsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialAssetMovement` values. */ export type ConfidentialAssetMovementsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -71488,7 +71049,7 @@ export enum ConfidentialAssetMovementsGroupBy { Id = 'ID', Proof = 'PROOF', ToId = 'TO_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ConfidentialAssetMovementsHavingAverageInput = { @@ -71562,7 +71123,7 @@ export enum ConfidentialAssetMovementsOrderBy { ToIdAsc = 'TO_ID_ASC', ToIdDesc = 'TO_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialAssetStddevPopulationAggregateFilter = { @@ -71683,7 +71244,6 @@ export type ConfidentialAssetsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialAsset` values. */ export type ConfidentialAssetsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -71717,7 +71277,7 @@ export enum ConfidentialAssetsGroupBy { Ticker = 'TICKER', TotalSupply = 'TOTAL_SUPPLY', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueFiltering = 'VENUE_FILTERING' + VenueFiltering = 'VENUE_FILTERING', } export type ConfidentialAssetsHavingAverageInput = { @@ -72423,7 +71983,7 @@ export enum ConfidentialAssetsOrderBy { UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', VenueFilteringAsc = 'VENUE_FILTERING_ASC', - VenueFilteringDesc = 'VENUE_FILTERING_DESC' + VenueFilteringDesc = 'VENUE_FILTERING_DESC', } export type ConfidentialLeg = Node & { @@ -72561,7 +72121,6 @@ export type ConfidentialLegsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialLeg` values. */ export type ConfidentialLegsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -72589,7 +72148,7 @@ export enum ConfidentialLegsGroupBy { ReceiverId = 'RECEIVER_ID', SenderId = 'SENDER_ID', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ConfidentialLegsHavingAverageInput = { @@ -72665,7 +72224,7 @@ export enum ConfidentialLegsOrderBy { TransactionIdAsc = 'TRANSACTION_ID_ASC', TransactionIdDesc = 'TRANSACTION_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialTransaction = Node & { @@ -72722,7 +72281,6 @@ export type ConfidentialTransaction = Node & { venueId: Scalars['String']['output']; }; - export type ConfidentialTransactionAffirmationsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -72735,32 +72293,31 @@ export type ConfidentialTransactionAffirmationsArgs = { orderBy?: InputMaybe>; }; - -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdArgs = { after?: InputMaybe; @@ -72774,7 +72331,6 @@ export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreate orderBy?: InputMaybe>; }; - export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -72787,97 +72343,96 @@ export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdate orderBy?: InputMaybe>; }; - -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialTransactionConfidentialAssetHistoriesByTransactionIdArgs = { after?: InputMaybe; @@ -72891,32 +72446,31 @@ export type ConfidentialTransactionConfidentialAssetHistoriesByTransactionIdArgs orderBy?: InputMaybe>; }; - -export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialTransactionLegsArgs = { after?: InputMaybe; @@ -73221,7 +72775,6 @@ export type ConfidentialTransactionAffirmationsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialTransactionAffirmation` values. */ export type ConfidentialTransactionAffirmationsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -73252,7 +72805,7 @@ export enum ConfidentialTransactionAffirmationsGroupBy { Proofs = 'PROOFS', Status = 'STATUS', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type ConfidentialTransactionAffirmationsHavingAverageInput = { @@ -73352,7 +72905,7 @@ export enum ConfidentialTransactionAffirmationsOrderBy { TransactionIdAsc = 'TRANSACTION_ID_ASC', TransactionIdDesc = 'TRANSACTION_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type ConfidentialTransactionAggregates = { @@ -73403,605 +72956,629 @@ export type ConfidentialTransactionAggregatesFilter = { }; export type ConfidentialTransactionAverageAggregateFilter = { - eventIdx?: InputMaybe; - pendingAffirmations?: InputMaybe; -}; - -export type ConfidentialTransactionAverageAggregates = { - __typename?: 'ConfidentialTransactionAverageAggregates'; - /** Mean average of eventIdx across the matching connection */ - eventIdx?: Maybe; - /** Mean average of pendingAffirmations across the matching connection */ - pendingAffirmations?: Maybe; -}; - -/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; }; +export type ConfidentialTransactionAverageAggregates = { + __typename?: 'ConfidentialTransactionAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; -/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - confidentialLegsByReceiverId: ConfidentialLegsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialLeg`. */ - confidentialLegsBySenderId: ConfidentialLegsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAsset` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAsset` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ - confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAsset` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ -export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialTransactionDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -74095,53 +73672,55 @@ export type ConfidentialTransactionFilter = { }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection = { - __typename?: 'ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdge = { - __typename?: 'ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Identity` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; /** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialTransactionMaxAggregateFilter = { eventIdx?: InputMaybe; @@ -74172,7 +73751,7 @@ export type ConfidentialTransactionMinAggregates = { export enum ConfidentialTransactionStatusEnum { Created = 'Created', Executed = 'Executed', - Rejected = 'Rejected' + Rejected = 'Rejected', } /** A filter to be used against ConfidentialTransactionStatusEnum fields. All fields are combined with a logical ‘and.’ */ @@ -74319,7 +73898,6 @@ export type ConfidentialTransactionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialTransaction` values. */ export type ConfidentialTransactionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -74348,7 +73926,7 @@ export enum ConfidentialTransactionsGroupBy { PendingAffirmations = 'PENDING_AFFIRMATIONS', Status = 'STATUS', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export type ConfidentialTransactionsHavingAverageInput = { @@ -75134,7 +74712,7 @@ export enum ConfidentialTransactionsOrderBy { UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', VenueIdAsc = 'VENUE_ID_ASC', - VenueIdDesc = 'VENUE_ID_DESC' + VenueIdDesc = 'VENUE_ID_DESC', } export type ConfidentialVenue = Node & { @@ -75162,7 +74740,6 @@ export type ConfidentialVenue = Node & { venueId: Scalars['Int']['output']; }; - export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75175,7 +74752,6 @@ export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlo orderBy?: InputMaybe>; }; - export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75188,7 +74764,6 @@ export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlo orderBy?: InputMaybe>; }; - export type ConfidentialVenueConfidentialTransactionsByVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75262,102 +74837,106 @@ export type ConfidentialVenueAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ - confidentialTransactionsByCreatedBlockId: ConfidentialTransactionsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByCreatedBlockId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ - confidentialTransactionsByUpdatedBlockId: ConfidentialTransactionsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByUpdatedBlockId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ -export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ConfidentialVenueDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -75547,7 +75126,6 @@ export type ConfidentialVenuesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ConfidentialVenue` values. */ export type ConfidentialVenuesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -75573,7 +75151,7 @@ export enum ConfidentialVenuesGroupBy { EventIdx = 'EVENT_IDX', Id = 'ID', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export type ConfidentialVenuesHavingAverageInput = { @@ -75863,7 +75441,7 @@ export enum ConfidentialVenuesOrderBy { UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', VenueIdAsc = 'VENUE_ID_ASC', - VenueIdDesc = 'VENUE_ID_DESC' + VenueIdDesc = 'VENUE_ID_DESC', } export type CustomClaimType = Node & { @@ -75904,7 +75482,6 @@ export type CustomClaimType = Node & { updatedBlockId: Scalars['String']['output']; }; - export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75917,7 +75494,6 @@ export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75930,7 +75506,6 @@ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75943,7 +75518,6 @@ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75956,7 +75530,6 @@ export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdArg orderBy?: InputMaybe>; }; - export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75969,7 +75542,6 @@ export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdArg orderBy?: InputMaybe>; }; - export type CustomClaimTypeClaimsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75982,7 +75554,6 @@ export type CustomClaimTypeClaimsArgs = { orderBy?: InputMaybe>; }; - export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -75995,7 +75566,6 @@ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -76008,7 +75578,6 @@ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdArgs = { orderBy?: InputMaybe>; }; - export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -76021,7 +75590,6 @@ export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerId orderBy?: InputMaybe>; }; - export type CustomClaimTypeStatTypesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -76066,12 +75634,12 @@ export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `StatType`. */ -export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `StatType`. */ export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyEdge = { @@ -76084,19 +75652,19 @@ export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToMany statTypes: StatTypesConnection; }; - /** A `Asset` edge in the connection, with data from `StatType`. */ -export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyEdgeStatTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection = { @@ -76115,12 +75683,12 @@ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge = { @@ -76133,19 +75701,19 @@ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyTo node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection = { @@ -76164,12 +75732,12 @@ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge = { @@ -76182,43 +75750,44 @@ export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyTo node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ -export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ -export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge = { @@ -76231,43 +75800,44 @@ export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdMan statTypesByCreatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ -export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ -export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge = { @@ -76280,19 +75850,19 @@ export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdMan statTypesByUpdatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type CustomClaimTypeDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -76380,12 +75950,12 @@ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdge = { @@ -76398,19 +75968,19 @@ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ -export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Claim`. */ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection = { @@ -76429,12 +75999,12 @@ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdge = { @@ -76447,43 +76017,44 @@ export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToMa node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ -export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `StatType`. */ -export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection = { - __typename?: 'CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `StatType`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection = + { + __typename?: 'CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `StatType`. */ -export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `StatType`. */ export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyEdge = { @@ -76496,19 +76067,19 @@ export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerId statTypesByClaimIssuerId: StatTypesConnection; }; - /** A `Identity` edge in the connection, with data from `StatType`. */ -export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `Claim` object types. All fields are combined with a logical ‘and.’ */ export type CustomClaimTypeToManyClaimFilter = { @@ -76551,7 +76122,6 @@ export type CustomClaimTypesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `CustomClaimType` values. */ export type CustomClaimTypesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -76576,7 +76146,7 @@ export enum CustomClaimTypesGroupBy { Id = 'ID', IdentityId = 'IDENTITY_ID', Name = 'NAME', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type CustomClaimTypesHavingAverageInput = { @@ -77154,7 +76724,7 @@ export enum CustomClaimTypesOrderBy { StatTypesVarianceSampleUpdatedBlockIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', StatTypesVarianceSampleUpdatedBlockIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */ @@ -77251,7 +76821,6 @@ export type DebugsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Debug` values. */ export type DebugsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -77274,7 +76843,7 @@ export enum DebugsGroupBy { CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', Id = 'ID', - Line = 'LINE' + Line = 'LINE', } export type DebugsHavingAverageInput = { @@ -77340,7 +76909,7 @@ export enum DebugsOrderBy { LineDesc = 'LINE_DESC', Natural = 'NATURAL', PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC' + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', } export type Distribution = Node & { @@ -77384,7 +76953,6 @@ export type Distribution = Node & { updatedBlockId: Scalars['String']['output']; }; - export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -77397,7 +76965,6 @@ export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlock orderBy?: InputMaybe>; }; - export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -77410,7 +76977,6 @@ export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlock orderBy?: InputMaybe>; }; - export type DistributionDistributionPaymentsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -77423,7 +76989,6 @@ export type DistributionDistributionPaymentsArgs = { orderBy?: InputMaybe>; }; - export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -77512,28 +77077,29 @@ export type DistributionAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `DistributionPayment`. */ export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyEdge = { @@ -77546,43 +77112,44 @@ export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlock node?: Maybe; }; - /** A `Block` edge in the connection, with data from `DistributionPayment`. */ -export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `DistributionPayment`. */ export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyEdge = { @@ -77595,19 +77162,19 @@ export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlock node?: Maybe; }; - /** A `Block` edge in the connection, with data from `DistributionPayment`. */ -export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type DistributionDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -77724,28 +77291,29 @@ export type DistributionFilter = { }; /** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ -export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection = { - __typename?: 'DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Identity`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Identity` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Identity` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection = + { + __typename?: 'DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ -export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `DistributionPayment`. */ export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyEdge = { @@ -77758,19 +77326,19 @@ export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetId node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `DistributionPayment`. */ -export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type DistributionMaxAggregateFilter = { amount?: InputMaybe; @@ -78137,7 +77705,6 @@ export type DistributionPaymentsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `DistributionPayment` values. */ export type DistributionPaymentsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -78170,7 +77737,7 @@ export enum DistributionPaymentsGroupBy { Reclaimed = 'RECLAIMED', TargetId = 'TARGET_ID', Tax = 'TAX', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type DistributionPaymentsHavingAverageInput = { @@ -78288,7 +77855,7 @@ export enum DistributionPaymentsOrderBy { TaxAsc = 'TAX_ASC', TaxDesc = 'TAX_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type DistributionStddevPopulationAggregateFilter = { @@ -78460,7 +78027,6 @@ export type DistributionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Distribution` values. */ export type DistributionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -78494,7 +78060,7 @@ export enum DistributionsGroupBy { PortfolioId = 'PORTFOLIO_ID', Remaining = 'REMAINING', Taxes = 'TAXES', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type DistributionsHavingAverageInput = { @@ -78881,7 +78447,7 @@ export enum DistributionsOrderBy { TaxesAsc = 'TAXES_ASC', TaxesDesc = 'TAXES_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Event = Node & { @@ -79532,7 +79098,7 @@ export enum EventIdEnum { VoteRetracted = 'VoteRetracted', VoteThresholdUpdated = 'VoteThresholdUpdated', Voted = 'Voted', - Withdrawn = 'Withdrawn' + Withdrawn = 'Withdrawn', } /** A filter to be used against EventIdEnum fields. All fields are combined with a logical ‘and.’ */ @@ -79690,7 +79256,6 @@ export type EventsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Event` values. */ export type EventsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -79731,7 +79296,7 @@ export enum EventsGroupBy { Id = 'ID', ModuleId = 'MODULE_ID', SpecVersionId = 'SPEC_VERSION_ID', - TransferTo = 'TRANSFER_TO' + TransferTo = 'TRANSFER_TO', } export type EventsHavingAverageInput = { @@ -79860,7 +79425,7 @@ export enum EventsOrderBy { SpecVersionIdAsc = 'SPEC_VERSION_ID_ASC', SpecVersionIdDesc = 'SPEC_VERSION_ID_DESC', TransferToAsc = 'TRANSFER_TO_ASC', - TransferToDesc = 'TRANSFER_TO_DESC' + TransferToDesc = 'TRANSFER_TO_DESC', } export type Extrinsic = Node & { @@ -79898,7 +79463,6 @@ export type Extrinsic = Node & { success: Scalars['Int']['output']; }; - export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -79911,7 +79475,6 @@ export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdArgs = { orderBy?: InputMaybe>; }; - export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -79924,7 +79487,6 @@ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -79937,7 +79499,6 @@ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type ExtrinsicEventsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -79950,7 +79511,6 @@ export type ExtrinsicEventsArgs = { orderBy?: InputMaybe>; }; - export type ExtrinsicPolyxTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -80055,7 +79615,6 @@ export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Event`. */ export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -80073,7 +79632,6 @@ export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Event`. */ export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdgeEventsArgs = { after?: InputMaybe; @@ -80104,12 +79662,12 @@ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ -export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyEdge = { @@ -80122,19 +79680,19 @@ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToM polyxTransactionsByCreatedBlockId: PolyxTransactionsConnection; }; - /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ -export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyEdgePolyxTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyEdgePolyxTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnection = { @@ -80153,12 +79711,12 @@ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ -export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyEdge = { @@ -80171,19 +79729,19 @@ export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToM polyxTransactionsByUpdatedBlockId: PolyxTransactionsConnection; }; - /** A `Block` edge in the connection, with data from `PolyxTransaction`. */ -export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyEdgePolyxTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyEdgePolyxTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ExtrinsicDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -80535,7 +80093,6 @@ export type ExtrinsicsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Extrinsic` values. */ export type ExtrinsicsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -80570,7 +80127,7 @@ export enum ExtrinsicsGroupBy { Signed = 'SIGNED', SignedbyAddress = 'SIGNEDBY_ADDRESS', SpecVersionId = 'SPEC_VERSION_ID', - Success = 'SUCCESS' + Success = 'SUCCESS', } export type ExtrinsicsHavingAverageInput = { @@ -80695,7 +80252,13 @@ export enum ExtrinsicsOrderBy { BlockIdDesc = 'BLOCK_ID_DESC', CallIdAsc = 'CALL_ID_ASC', CallIdDesc = 'CALL_ID_DESC', + /** + * @deprecated - Removed in SQ v19 updates `BlockIdAsc` to work instead + */ CreatedAtAsc = 'CREATED_AT_ASC', + /** + * @deprecated - Removed in SQ v19 which updates `BlockIdDesc` to work instead + */ CreatedAtDesc = 'CREATED_AT_DESC', EventsAverageAttributesAsc = 'EVENTS_AVERAGE_ATTRIBUTES_ASC', EventsAverageAttributesDesc = 'EVENTS_AVERAGE_ATTRIBUTES_DESC', @@ -81465,7 +81028,7 @@ export enum ExtrinsicsOrderBy { SpecVersionIdAsc = 'SPEC_VERSION_ID_ASC', SpecVersionIdDesc = 'SPEC_VERSION_ID_DESC', SuccessAsc = 'SUCCESS_ASC', - SuccessDesc = 'SUCCESS_DESC' + SuccessDesc = 'SUCCESS_DESC', } export type FoundType = Node & { @@ -81531,7 +81094,6 @@ export type FoundTypesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `FoundType` values. */ export type FoundTypesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -81553,7 +81115,7 @@ export enum FoundTypesGroupBy { CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', Id = 'ID', - RawType = 'RAW_TYPE' + RawType = 'RAW_TYPE', } export type FoundTypesHavingAverageInput = { @@ -81617,7 +81179,7 @@ export enum FoundTypesOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', RawTypeAsc = 'RAW_TYPE_ASC', - RawTypeDesc = 'RAW_TYPE_DESC' + RawTypeDesc = 'RAW_TYPE_DESC', } export type Funding = Node & { @@ -81883,7 +81445,6 @@ export type FundingsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Funding` values. */ export type FundingsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -81913,7 +81474,7 @@ export enum FundingsGroupBy { FundingRound = 'FUNDING_ROUND', Id = 'ID', TotalFundingAmount = 'TOTAL_FUNDING_AMOUNT', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type FundingsHavingAverageInput = { @@ -82016,7 +81577,7 @@ export enum FundingsOrderBy { TotalFundingAmountAsc = 'TOTAL_FUNDING_AMOUNT_ASC', TotalFundingAmountDesc = 'TOTAL_FUNDING_AMOUNT_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type HavingBigfloatFilter = { @@ -82063,7 +81624,6 @@ export type IdentitiesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values. */ export type IdentitiesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -82093,7 +81653,7 @@ export enum IdentitiesGroupBy { Id = 'ID', PrimaryAccount = 'PRIMARY_ACCOUNT', SecondaryKeysFrozen = 'SECONDARY_KEYS_FROZEN', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type IdentitiesHavingAverageInput = { @@ -89156,7 +88716,7 @@ export enum IdentitiesOrderBy { VenuesByOwnerIdVarianceSampleTypeAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_TYPE_ASC', VenuesByOwnerIdVarianceSampleTypeDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_TYPE_DESC', VenuesByOwnerIdVarianceSampleUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', - VenuesByOwnerIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC' + VenuesByOwnerIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', } export type Identity = Node & { @@ -89440,7 +89000,6 @@ export type Identity = Node & { venuesByStoCreatorIdAndVenueId: IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnection; }; - export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89453,7 +89012,6 @@ export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetMandatoryMediatorsByAddedByIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89466,7 +89024,6 @@ export type IdentityAssetMandatoryMediatorsByAddedByIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetPreApprovalsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89479,7 +89036,6 @@ export type IdentityAssetPreApprovalsArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89492,7 +89048,6 @@ export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89505,7 +89060,6 @@ export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89518,7 +89072,6 @@ export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByDistributionIdentityIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89531,7 +89084,6 @@ export type IdentityAssetsByDistributionIdentityIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89544,7 +89096,6 @@ export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByNftHolderIdentityIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89557,7 +89108,6 @@ export type IdentityAssetsByNftHolderIdentityIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89570,7 +89120,6 @@ export type IdentityAssetsByOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89583,7 +89132,6 @@ export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89596,7 +89144,6 @@ export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89609,7 +89156,6 @@ export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89622,7 +89168,6 @@ export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89635,7 +89180,6 @@ export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdArgs = orderBy?: InputMaybe>; }; - export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89648,7 +89192,6 @@ export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityAuthorizationsByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89661,7 +89204,6 @@ export type IdentityAuthorizationsByFromIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89674,7 +89216,6 @@ export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89687,7 +89228,6 @@ export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89700,7 +89240,6 @@ export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89713,7 +89252,6 @@ export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89726,7 +89264,6 @@ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89739,7 +89276,6 @@ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89752,7 +89288,6 @@ export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89765,7 +89300,6 @@ export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89778,7 +89312,6 @@ export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89791,7 +89324,6 @@ export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89804,7 +89336,6 @@ export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89817,7 +89348,6 @@ export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89830,7 +89360,6 @@ export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89843,7 +89372,6 @@ export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89856,7 +89384,6 @@ export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89869,7 +89396,6 @@ export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89882,7 +89408,6 @@ export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89895,7 +89420,6 @@ export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89908,7 +89432,6 @@ export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89921,7 +89444,6 @@ export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89934,7 +89456,6 @@ export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89947,7 +89468,6 @@ export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89960,7 +89480,6 @@ export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89973,7 +89492,6 @@ export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89986,7 +89504,6 @@ export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -89999,7 +89516,6 @@ export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90012,7 +89528,6 @@ export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreat orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90025,7 +89540,6 @@ export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdat orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90038,7 +89552,6 @@ export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90051,7 +89564,6 @@ export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90064,7 +89576,6 @@ export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90077,7 +89588,6 @@ export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90090,7 +89600,6 @@ export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90103,7 +89612,6 @@ export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90116,7 +89624,6 @@ export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90129,7 +89636,6 @@ export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90142,7 +89648,6 @@ export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90155,7 +89660,6 @@ export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90168,7 +89672,6 @@ export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90181,7 +89684,6 @@ export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90194,7 +89696,6 @@ export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90207,7 +89708,6 @@ export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90220,7 +89720,6 @@ export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90233,7 +89732,6 @@ export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90246,7 +89744,6 @@ export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90259,7 +89756,6 @@ export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90272,7 +89768,6 @@ export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90285,7 +89780,6 @@ export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90298,7 +89792,6 @@ export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90311,7 +89804,6 @@ export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90324,7 +89816,6 @@ export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90337,7 +89828,6 @@ export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90350,7 +89840,6 @@ export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90363,7 +89852,6 @@ export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90376,7 +89864,6 @@ export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90389,7 +89876,6 @@ export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90402,7 +89888,6 @@ export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdAr orderBy?: InputMaybe>; }; - export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90415,7 +89900,6 @@ export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdAr orderBy?: InputMaybe>; }; - export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90428,7 +89912,6 @@ export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90441,7 +89924,6 @@ export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90454,7 +89936,6 @@ export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockI orderBy?: InputMaybe>; }; - export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90467,7 +89948,6 @@ export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockI orderBy?: InputMaybe>; }; - export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90480,7 +89960,6 @@ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90493,7 +89972,6 @@ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90506,7 +89984,6 @@ export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90519,7 +89996,6 @@ export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityBridgeEventsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90532,7 +90008,6 @@ export type IdentityBridgeEventsArgs = { orderBy?: InputMaybe>; }; - export type IdentityChildrenArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90545,7 +90020,6 @@ export type IdentityChildrenArgs = { orderBy?: InputMaybe>; }; - export type IdentityClaimsByIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90558,7 +90032,6 @@ export type IdentityClaimsByIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityClaimsByTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90571,19 +90044,18 @@ export type IdentityClaimsByTargetIdArgs = { orderBy?: InputMaybe>; }; - -export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type IdentityConfidentialAccountsByCreatorIdArgs = { after?: InputMaybe; @@ -90597,7 +90069,6 @@ export type IdentityConfidentialAccountsByCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityConfidentialAssetsByCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90610,7 +90081,6 @@ export type IdentityConfidentialAssetsByCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityConfidentialTransactionAffirmationsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90623,19 +90093,18 @@ export type IdentityConfidentialTransactionAffirmationsArgs = { orderBy?: InputMaybe>; }; - -export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type IdentityConfidentialVenuesByCreatorIdArgs = { after?: InputMaybe; @@ -90649,7 +90118,6 @@ export type IdentityConfidentialVenuesByCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityCustomClaimTypesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90662,7 +90130,6 @@ export type IdentityCustomClaimTypesArgs = { orderBy?: InputMaybe>; }; - export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90675,7 +90142,6 @@ export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90688,7 +90154,6 @@ export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90701,7 +90166,6 @@ export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdA orderBy?: InputMaybe>; }; - export type IdentityDistributionPaymentsByTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90714,7 +90178,6 @@ export type IdentityDistributionPaymentsByTargetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityDistributionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90727,7 +90190,6 @@ export type IdentityDistributionsArgs = { orderBy?: InputMaybe>; }; - export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90740,7 +90202,6 @@ export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdA orderBy?: InputMaybe>; }; - export type IdentityHeldAssetsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90753,7 +90214,6 @@ export type IdentityHeldAssetsArgs = { orderBy?: InputMaybe>; }; - export type IdentityHeldNftsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90766,7 +90226,6 @@ export type IdentityHeldNftsArgs = { orderBy?: InputMaybe>; }; - export type IdentityIdentitiesByChildIdentityChildIdAndParentIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90779,7 +90238,6 @@ export type IdentityIdentitiesByChildIdentityChildIdAndParentIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityIdentitiesByChildIdentityParentIdAndChildIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90792,7 +90250,6 @@ export type IdentityIdentitiesByChildIdentityParentIdAndChildIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityIdentitiesByClaimIssuerIdAndTargetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90805,7 +90262,6 @@ export type IdentityIdentitiesByClaimIssuerIdAndTargetIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityIdentitiesByClaimTargetIdAndIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90818,7 +90274,6 @@ export type IdentityIdentitiesByClaimTargetIdAndIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90831,7 +90286,6 @@ export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90844,7 +90298,6 @@ export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityInvestmentsByInvestorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90857,7 +90310,6 @@ export type IdentityInvestmentsByInvestorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityMultiSigProposalsByCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90870,7 +90322,6 @@ export type IdentityMultiSigProposalsByCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityMultiSigsByCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90883,7 +90334,6 @@ export type IdentityMultiSigsByCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90896,7 +90346,6 @@ export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityParentChildIdentitiesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90909,7 +90358,6 @@ export type IdentityParentChildIdentitiesArgs = { orderBy?: InputMaybe>; }; - export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90922,7 +90370,6 @@ export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityPortfoliosArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90935,7 +90382,6 @@ export type IdentityPortfoliosArgs = { orderBy?: InputMaybe>; }; - export type IdentityPortfoliosByCustodianIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90948,7 +90394,6 @@ export type IdentityPortfoliosByCustodianIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90961,7 +90406,6 @@ export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90974,7 +90418,6 @@ export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -90987,7 +90430,6 @@ export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityProposalsByOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91000,7 +90442,6 @@ export type IdentityProposalsByOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentitySecondaryAccountsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91013,7 +90454,6 @@ export type IdentitySecondaryAccountsArgs = { orderBy?: InputMaybe>; }; - export type IdentityStakingEventsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91026,7 +90466,6 @@ export type IdentityStakingEventsArgs = { orderBy?: InputMaybe>; }; - export type IdentityStatTypesByClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91039,7 +90478,6 @@ export type IdentityStatTypesByClaimIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91052,7 +90490,6 @@ export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdArgs orderBy?: InputMaybe>; }; - export type IdentityStosByCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91065,7 +90502,6 @@ export type IdentityStosByCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityTickerExternalAgentActionsByCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91078,7 +90514,6 @@ export type IdentityTickerExternalAgentActionsByCallerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityTickerExternalAgentHistoriesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91091,7 +90526,6 @@ export type IdentityTickerExternalAgentHistoriesArgs = { orderBy?: InputMaybe>; }; - export type IdentityTickerExternalAgentsByCallerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91104,7 +90538,6 @@ export type IdentityTickerExternalAgentsByCallerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityTransferCompliancesByClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91117,7 +90550,6 @@ export type IdentityTransferCompliancesByClaimIssuerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityVenuesByOwnerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91130,7 +90562,6 @@ export type IdentityVenuesByOwnerIdArgs = { orderBy?: InputMaybe>; }; - export type IdentityVenuesByStoCreatorIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -91160,12 +90591,12 @@ export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Account` values, with data from `MultiSig`. */ -export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Account` edge in the connection, with data from `MultiSig`. */ export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdge = { @@ -91178,19 +90609,19 @@ export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdge node?: Maybe; }; - /** A `Account` edge in the connection, with data from `MultiSig`. */ -export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type IdentityAggregates = { __typename?: 'IdentityAggregates'; @@ -91224,12 +90655,12 @@ export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetHolder`. */ -export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetHolder`. */ export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyEdge = { @@ -91242,7 +90673,6 @@ export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetHolder`. */ export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyEdgeHoldersArgs = { after?: InputMaybe; @@ -91273,12 +90703,12 @@ export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ -export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyEdge = { @@ -91291,19 +90721,19 @@ export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyE node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnection = { @@ -91322,12 +90752,12 @@ export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ -export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdge = { @@ -91340,19 +90770,19 @@ export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdge = node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ -export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Distribution`. */ export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnection = { @@ -91371,12 +90801,12 @@ export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyEdge = { @@ -91389,7 +90819,6 @@ export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -91420,12 +90849,12 @@ export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyEdge = { @@ -91438,19 +90867,19 @@ export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyEdge = node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ -export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByDistributionIdentityIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `NftHolder`. */ export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnection = { @@ -91469,12 +90898,12 @@ export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `NftHolder`. */ -export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `NftHolder`. */ export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyEdge = { @@ -91487,7 +90916,6 @@ export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `NftHolder`. */ export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyEdgeNftHoldersArgs = { after?: InputMaybe; @@ -91518,12 +90946,12 @@ export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `StatType`. */ -export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `StatType`. */ export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyEdge = { @@ -91536,7 +90964,6 @@ export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyEdge = { statTypes: StatTypesConnection; }; - /** A `Asset` edge in the connection, with data from `StatType`. */ export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyEdgeStatTypesArgs = { after?: InputMaybe; @@ -91567,12 +90994,12 @@ export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Sto`. */ -export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Sto`. */ export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdge = { @@ -91585,19 +91012,19 @@ export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdge = { stosByOfferingAssetId: StosConnection; }; - /** A `Asset` edge in the connection, with data from `Sto`. */ -export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnection = { @@ -91616,12 +91043,12 @@ export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ -export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyEdge = { @@ -91634,19 +91061,19 @@ export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToMan tickerExternalAgentActions: TickerExternalAgentActionsConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnection = { @@ -91665,12 +91092,12 @@ export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ -export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdge = { @@ -91683,19 +91110,19 @@ export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdge tickerExternalAgents: TickerExternalAgentsConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ -export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnection = { @@ -91714,12 +91141,12 @@ export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyTo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ -export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyEdge = { @@ -91732,19 +91159,19 @@ export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyTo tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; }; - /** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnection = { @@ -91763,12 +91190,12 @@ export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ -export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyEdge = { @@ -91781,19 +91208,19 @@ export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyE transferCompliances: TransferCompliancesConnection; }; - /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ -export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Account`. */ export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -91812,12 +91239,12 @@ export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Account`. */ -export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Account`. */ export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -91830,19 +91257,19 @@ export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Account`. */ -export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Account`. */ export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -91861,12 +91288,12 @@ export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Account`. */ -export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Account`. */ export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -91879,19 +91306,19 @@ export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Account`. */ -export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetHolder`. */ export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -91910,12 +91337,12 @@ export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetHolder`. */ -export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetHolder`. */ export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -91928,19 +91355,19 @@ export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetHolder`. */ -export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetHolder`. */ export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -91959,12 +91386,12 @@ export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetHolder`. */ -export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetHolder`. */ export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -91977,19 +91404,19 @@ export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetHolder`. */ -export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnection = { @@ -92008,12 +91435,12 @@ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyEdge = { @@ -92026,19 +91453,19 @@ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnection = { @@ -92057,12 +91484,12 @@ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ -export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyEdge = { @@ -92075,19 +91502,19 @@ export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ -export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Asset`. */ export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnection = { @@ -92106,12 +91533,12 @@ export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Asset`. */ -export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Asset`. */ export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdge = { @@ -92124,19 +91551,19 @@ export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Asset`. */ -export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdgeAssetsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdgeAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Asset`. */ export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnection = { @@ -92155,12 +91582,12 @@ export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Asset`. */ -export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Asset`. */ export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdge = { @@ -92173,19 +91600,19 @@ export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Asset`. */ -export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdgeAssetsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdgeAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -92204,12 +91631,12 @@ export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ -export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -92222,19 +91649,19 @@ export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ -export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -92253,12 +91680,12 @@ export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ -export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -92271,19 +91698,19 @@ export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetPreApproval`. */ -export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Authorization`. */ export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnection = { @@ -92302,12 +91729,12 @@ export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Authorization`. */ -export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Authorization`. */ export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdge = { @@ -92320,19 +91747,19 @@ export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Authorization`. */ -export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdgeAuthorizationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdgeAuthorizationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Authorization`. */ export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnection = { @@ -92351,12 +91778,12 @@ export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Authorization`. */ -export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Authorization`. */ export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdge = { @@ -92369,19 +91796,19 @@ export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Authorization`. */ -export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdgeAuthorizationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdgeAuthorizationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -92400,12 +91827,12 @@ export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ -export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `BridgeEvent`. */ export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -92418,19 +91845,19 @@ export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `BridgeEvent`. */ -export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdgeBridgeEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdgeBridgeEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -92449,12 +91876,12 @@ export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `BridgeEvent`. */ -export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `BridgeEvent`. */ export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -92467,19 +91894,19 @@ export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `BridgeEvent`. */ -export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdgeBridgeEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdgeBridgeEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnection = { @@ -92498,12 +91925,12 @@ export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdge = { @@ -92516,19 +91943,19 @@ export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnection = { @@ -92547,12 +91974,12 @@ export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdge = { @@ -92565,19 +91992,19 @@ export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnection = { @@ -92596,12 +92023,12 @@ export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdge = { @@ -92614,19 +92041,19 @@ export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnection = { @@ -92645,12 +92072,12 @@ export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ChildIdentity`. */ export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdge = { @@ -92663,19 +92090,19 @@ export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ChildIdentity`. */ -export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnection = { @@ -92694,12 +92121,12 @@ export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { @@ -92712,19 +92139,19 @@ export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = { @@ -92743,12 +92170,12 @@ export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { @@ -92761,19 +92188,19 @@ export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnection = { @@ -92792,12 +92219,12 @@ export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdge = { @@ -92810,19 +92237,19 @@ export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Claim`. */ export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnection = { @@ -92841,12 +92268,12 @@ export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Claim`. */ -export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Claim`. */ export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdge = { @@ -92859,19 +92286,19 @@ export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Claim`. */ -export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnection = { @@ -92890,38 +92317,38 @@ export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ -export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdge = { __typename?: 'IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdge'; /** Reads and enables pagination through a set of `ConfidentialAccount`. */ confidentialAccountsByCreatedBlockId: ConfidentialAccountsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - - -/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ -export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialAccountsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; }; +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnection = { __typename?: 'IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnection'; @@ -92939,12 +92366,12 @@ export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ -export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyEdge = { @@ -92957,19 +92384,19 @@ export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ -export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialAccountsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnection = { @@ -92988,12 +92415,12 @@ export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ -export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyEdge = { @@ -93006,19 +92433,19 @@ export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ -export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnection = { @@ -93037,12 +92464,12 @@ export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ -export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyEdge = { @@ -93055,117 +92482,121 @@ export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ -export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnection = { @@ -93184,12 +92615,12 @@ export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ -export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyEdge = { @@ -93202,19 +92633,19 @@ export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ -export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialVenuesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnection = { @@ -93233,12 +92664,12 @@ export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ -export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyEdge = { @@ -93251,19 +92682,19 @@ export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ -export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialVenuesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -93282,12 +92713,12 @@ export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ -export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `CustomClaimType`. */ export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -93300,19 +92731,19 @@ export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `CustomClaimType`. */ -export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -93331,12 +92762,12 @@ export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `CustomClaimType`. */ -export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `CustomClaimType`. */ export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -93349,19 +92780,19 @@ export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `CustomClaimType`. */ -export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -93380,12 +92811,12 @@ export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -93398,19 +92829,19 @@ export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -93429,12 +92860,12 @@ export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -93447,19 +92878,19 @@ export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnection = { @@ -93478,12 +92909,12 @@ export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `DistributionPayment`. */ export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyEdge = { @@ -93496,19 +92927,19 @@ export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `DistributionPayment`. */ -export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnection = { @@ -93527,12 +92958,12 @@ export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `DistributionPayment`. */ -export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `DistributionPayment`. */ export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyEdge = { @@ -93545,19 +92976,19 @@ export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToMa node?: Maybe; }; - /** A `Block` edge in the connection, with data from `DistributionPayment`. */ -export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Investment`. */ export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnection = { @@ -93576,12 +93007,12 @@ export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Investment`. */ -export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Investment`. */ export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdge = { @@ -93594,19 +93025,19 @@ export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Investment`. */ -export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdgeInvestmentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdgeInvestmentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Investment`. */ export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnection = { @@ -93625,12 +93056,12 @@ export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Investment`. */ -export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Investment`. */ export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdge = { @@ -93643,19 +93074,19 @@ export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdge node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Investment`. */ -export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdgeInvestmentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdgeInvestmentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSig`. */ export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnection = { @@ -93674,12 +93105,12 @@ export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSig`. */ -export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSig`. */ export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdge = { @@ -93692,19 +93123,19 @@ export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSig`. */ -export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSig`. */ export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnection = { @@ -93723,12 +93154,12 @@ export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSig`. */ -export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSig`. */ export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdge = { @@ -93741,19 +93172,19 @@ export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSig`. */ -export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnection = { @@ -93772,12 +93203,12 @@ export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ -export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyEdge = { @@ -93790,19 +93221,19 @@ export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ -export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnection = { @@ -93821,12 +93252,12 @@ export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ -export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyEdge = { @@ -93839,19 +93270,19 @@ export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToMany node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ -export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `NftHolder`. */ export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -93870,12 +93301,12 @@ export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `NftHolder`. */ -export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `NftHolder`. */ export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -93888,19 +93319,19 @@ export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `NftHolder`. */ -export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `NftHolder`. */ export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -93919,12 +93350,12 @@ export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `NftHolder`. */ -export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `NftHolder`. */ export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -93937,19 +93368,19 @@ export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `NftHolder`. */ -export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnection = { @@ -93968,12 +93399,12 @@ export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdge = { @@ -93986,19 +93417,19 @@ export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdge portfoliosByCreatedBlockId: PortfoliosConnection; }; - /** A `Block` edge in the connection, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnection = { @@ -94017,12 +93448,12 @@ export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdge = { @@ -94035,19 +93466,19 @@ export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdge portfoliosByUpdatedBlockId: PortfoliosConnection; }; - /** A `Block` edge in the connection, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -94066,12 +93497,12 @@ export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -94084,19 +93515,19 @@ export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdge = portfoliosByCreatedBlockId: PortfoliosConnection; }; - /** A `Block` edge in the connection, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -94115,12 +93546,12 @@ export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Portfolio`. */ export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -94133,19 +93564,19 @@ export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdge = portfoliosByUpdatedBlockId: PortfoliosConnection; }; - /** A `Block` edge in the connection, with data from `Portfolio`. */ -export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Proposal`. */ export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnection = { @@ -94164,12 +93595,12 @@ export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Proposal`. */ -export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Proposal`. */ export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdge = { @@ -94182,19 +93613,19 @@ export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdge = { proposalsByCreatedBlockId: ProposalsConnection; }; - /** A `Block` edge in the connection, with data from `Proposal`. */ -export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdgeProposalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdgeProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Proposal`. */ export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnection = { @@ -94213,12 +93644,12 @@ export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Proposal`. */ -export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Proposal`. */ export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdge = { @@ -94231,19 +93662,19 @@ export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdge = { proposalsByUpdatedBlockId: ProposalsConnection; }; - /** A `Block` edge in the connection, with data from `Proposal`. */ -export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdgeProposalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdgeProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StakingEvent`. */ export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnection = { @@ -94262,12 +93693,12 @@ export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StakingEvent`. */ -export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StakingEvent`. */ export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -94280,19 +93711,19 @@ export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdg stakingEventsByCreatedBlockId: StakingEventsConnection; }; - /** A `Block` edge in the connection, with data from `StakingEvent`. */ -export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdgeStakingEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdgeStakingEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StakingEvent`. */ export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnection = { @@ -94311,12 +93742,12 @@ export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StakingEvent`. */ -export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StakingEvent`. */ export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -94329,19 +93760,19 @@ export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdg stakingEventsByUpdatedBlockId: StakingEventsConnection; }; - /** A `Block` edge in the connection, with data from `StakingEvent`. */ -export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdgeStakingEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdgeStakingEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnection = { @@ -94360,12 +93791,12 @@ export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StatType`. */ -export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { @@ -94378,19 +93809,19 @@ export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdge statTypesByCreatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `StatType`. */ export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = { @@ -94409,12 +93840,12 @@ export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `StatType`. */ -export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `StatType`. */ export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { @@ -94427,19 +93858,19 @@ export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdge statTypesByUpdatedBlockId: StatTypesConnection; }; - /** A `Block` edge in the connection, with data from `StatType`. */ -export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnection = { @@ -94458,12 +93889,12 @@ export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyEdge = { @@ -94476,7 +93907,6 @@ export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyEdge = { stosByCreatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { after?: InputMaybe; @@ -94507,12 +93937,12 @@ export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdge = { @@ -94525,7 +93955,6 @@ export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdge = { stosByUpdatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { after?: InputMaybe; @@ -94540,28 +93969,29 @@ export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdgeStosByUpd }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyEdge = { @@ -94574,43 +94004,44 @@ export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdMa tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ -export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyEdge = { @@ -94623,19 +94054,19 @@ export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdMa tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ -export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnection = { @@ -94654,12 +94085,12 @@ export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ -export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyEdge = { @@ -94672,19 +94103,19 @@ export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToMa tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ -export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnection = { @@ -94703,12 +94134,12 @@ export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToMa totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ -export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyEdge = { @@ -94721,43 +94152,44 @@ export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToMa tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ -export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyEdge = { @@ -94770,43 +94202,44 @@ export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockI tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ -export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyEdge = { @@ -94819,19 +94252,19 @@ export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockI tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; }; - /** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ -export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnection = { @@ -94850,12 +94283,12 @@ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { @@ -94868,19 +94301,19 @@ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdMany transferCompliancesByCreatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = { @@ -94899,12 +94332,12 @@ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { @@ -94917,19 +94350,19 @@ export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdMany transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Venue`. */ export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnection = { @@ -94948,12 +94381,12 @@ export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Venue`. */ -export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Venue`. */ export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdge = { @@ -94966,19 +94399,19 @@ export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdge = { venuesByCreatedBlockId: VenuesConnection; }; - /** A `Block` edge in the connection, with data from `Venue`. */ -export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdgeVenuesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdgeVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Venue`. */ export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnection = { @@ -94997,12 +94430,12 @@ export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnection = totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Venue`. */ -export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Venue`. */ export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdge = { @@ -95015,117 +94448,121 @@ export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdge = { venuesByUpdatedBlockId: VenuesConnection; }; - /** A `Block` edge in the connection, with data from `Venue`. */ -export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdgeVenuesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdgeVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection = { - __typename?: 'IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialAccount` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialAccount` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection = + { + __typename?: 'IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdge = { - __typename?: 'IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialAccount` at the end of the edge. */ - node?: Maybe; -}; - +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdge = + { + __typename?: 'IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection = { - __typename?: 'IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ConfidentialTransaction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection = + { + __typename?: 'IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdge = { - __typename?: 'IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ - affirmations: ConfidentialTransactionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ConfidentialTransaction` at the end of the edge. */ - node?: Maybe; -}; - +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdge = + { + __typename?: 'IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; /** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ -export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection = { @@ -95144,12 +94581,12 @@ export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ -export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge = { @@ -95162,7 +94599,6 @@ export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToMan node?: Maybe; }; - /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = { after?: InputMaybe; @@ -95193,12 +94629,12 @@ export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ -export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdge = { @@ -95211,7 +94647,6 @@ export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToMan node?: Maybe; }; - /** A `CustomClaimType` edge in the connection, with data from `Claim`. */ export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = { after?: InputMaybe; @@ -95226,28 +94661,29 @@ export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToMan }; /** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection = { - __typename?: 'IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `CustomClaimType` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `CustomClaimType` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection = + { + __typename?: 'IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ -export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge = { @@ -95260,19 +94696,19 @@ export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdM statTypes: StatTypesConnection; }; - /** A `CustomClaimType` edge in the connection, with data from `StatType`. */ -export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type IdentityDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -95315,28 +94751,29 @@ export type IdentityDistinctCountAggregates = { }; /** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ -export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection = { - __typename?: 'IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Distribution` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Distribution` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection = + { + __typename?: 'IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ -export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyEdge = { @@ -95349,19 +94786,19 @@ export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdM node?: Maybe; }; - /** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ -export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against `Identity` object types. All fields are combined with a logical ‘and.’ */ export type IdentityFilter = { @@ -95544,12 +94981,12 @@ export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ -export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyEdge = { @@ -95562,7 +94999,6 @@ export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyEdge = node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyEdgeChildrenArgs = { after?: InputMaybe; @@ -95593,12 +95029,12 @@ export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ -export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdge = { @@ -95611,19 +95047,19 @@ export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdge = parentChildIdentities: ChildIdentitiesConnection; }; - /** A `Identity` edge in the connection, with data from `ChildIdentity`. */ -export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Claim`. */ export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnection = { @@ -95642,12 +95078,12 @@ export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyEdge = { @@ -95660,7 +95096,6 @@ export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { after?: InputMaybe; @@ -95691,12 +95126,12 @@ export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Claim`. */ -export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Claim`. */ export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyEdge = { @@ -95709,7 +95144,6 @@ export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyEdge = { node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Claim`. */ export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { after?: InputMaybe; @@ -95740,12 +95174,12 @@ export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Portfolio`. */ -export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyEdge = { @@ -95758,7 +95192,6 @@ export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyEdge portfolios: PortfoliosConnection; }; - /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyEdgePortfoliosArgs = { after?: InputMaybe; @@ -95789,12 +95222,12 @@ export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Portfolio`. */ -export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Portfolio`. */ export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdge = { @@ -95807,19 +95240,19 @@ export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdge portfoliosByCustodianId: PortfoliosConnection; }; - /** A `Identity` edge in the connection, with data from `Portfolio`. */ -export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnection = { @@ -95838,12 +95271,12 @@ export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ -export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyEdge = { @@ -95856,7 +95289,6 @@ export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyE proposals: MultiSigProposalsConnection; }; - /** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyEdgeProposalsArgs = { after?: InputMaybe; @@ -95887,12 +95319,12 @@ export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Permission` values, with data from `Account`. */ -export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Permission` edge in the connection, with data from `Account`. */ export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdge = { @@ -95905,19 +95337,19 @@ export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdge node?: Maybe; }; - /** A `Permission` edge in the connection, with data from `Account`. */ -export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnection = { @@ -95936,12 +95368,12 @@ export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Distribution`. */ -export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Distribution`. */ export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEdge = { @@ -95954,19 +95386,19 @@ export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEd node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `Distribution`. */ -export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEdgeDistributionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnection = { @@ -95985,12 +95417,12 @@ export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdge = { @@ -96003,19 +95435,19 @@ export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdge stosByOfferingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnection = { @@ -96034,12 +95466,12 @@ export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdge = { @@ -96052,19 +95484,19 @@ export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdge stosByRaisingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnection = { @@ -96083,12 +95515,12 @@ export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ -export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyEdge = { @@ -96101,19 +95533,19 @@ export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyT transferCompliances: TransferCompliancesConnection; }; - /** A `StatType` edge in the connection, with data from `TransferCompliance`. */ -export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `Account` object types. All fields are combined with a logical ‘and.’ */ export type IdentityToManyAccountFilter = { @@ -96492,7 +95924,6 @@ export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Sto`. */ export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -96510,7 +95941,6 @@ export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyEdge = { stos: StosConnection; }; - /** A `Venue` edge in the connection, with data from `Sto`. */ export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyEdgeStosArgs = { after?: InputMaybe; @@ -96595,7 +96025,6 @@ export type Instruction = Node & { venueId?: Maybe; }; - export type InstructionAffirmationsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96608,7 +96037,6 @@ export type InstructionAffirmationsArgs = { orderBy?: InputMaybe>; }; - export type InstructionAssetTransactionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96621,7 +96049,6 @@ export type InstructionAssetTransactionsArgs = { orderBy?: InputMaybe>; }; - export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96634,7 +96061,6 @@ export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96647,7 +96073,6 @@ export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdArg orderBy?: InputMaybe>; }; - export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96660,7 +96085,6 @@ export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdArg orderBy?: InputMaybe>; }; - export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96673,7 +96097,6 @@ export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBloc orderBy?: InputMaybe>; }; - export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96686,7 +96109,6 @@ export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBloc orderBy?: InputMaybe>; }; - export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96699,7 +96121,6 @@ export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdArg orderBy?: InputMaybe>; }; - export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96712,7 +96133,6 @@ export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdArg orderBy?: InputMaybe>; }; - export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96725,7 +96145,6 @@ export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdArg orderBy?: InputMaybe>; }; - export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96738,7 +96157,6 @@ export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdArg orderBy?: InputMaybe>; }; - export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96751,7 +96169,6 @@ export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96764,7 +96181,6 @@ export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type InstructionEventsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96777,7 +96193,6 @@ export type InstructionEventsArgs = { orderBy?: InputMaybe>; }; - export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96790,7 +96205,6 @@ export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAn orderBy?: InputMaybe>; }; - export type InstructionLegsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96803,19 +96217,18 @@ export type InstructionLegsArgs = { orderBy?: InputMaybe>; }; - -export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdArgs = { after?: InputMaybe; @@ -96829,7 +96242,6 @@ export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChai orderBy?: InputMaybe>; }; - export type InstructionPartiesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96842,7 +96254,6 @@ export type InstructionPartiesArgs = { orderBy?: InputMaybe>; }; - export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96855,7 +96266,6 @@ export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolio orderBy?: InputMaybe>; }; - export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -96900,7 +96310,6 @@ export type InstructionAffirmation = Node & { updatedBlockId: Scalars['String']['output']; }; - export type InstructionAffirmationPortfoliosArgs = { distinct?: InputMaybe>>; }; @@ -97037,7 +96446,6 @@ export type InstructionAffirmationsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `InstructionAffirmation` values. */ export type InstructionAffirmationsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -97071,7 +96479,7 @@ export enum InstructionAffirmationsGroupBy { PartyId = 'PARTY_ID', Portfolios = 'PORTFOLIOS', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type InstructionAffirmationsHavingAverageInput = { @@ -97164,7 +96572,7 @@ export enum InstructionAffirmationsOrderBy { StatusAsc = 'STATUS_ASC', StatusDesc = 'STATUS_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type InstructionAggregates = { @@ -97231,12 +96639,12 @@ export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ -export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdge = { @@ -97249,19 +96657,19 @@ export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToMany node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ -export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type InstructionAverageAggregateFilter = { endAfterBlock?: InputMaybe; @@ -97277,28 +96685,29 @@ export type InstructionAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdge = { @@ -97311,43 +96720,44 @@ export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdge = { @@ -97360,141 +96770,146 @@ export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyEdge = { @@ -97507,43 +96922,44 @@ export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyEdge = { @@ -97556,43 +96972,44 @@ export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionParty`. */ -export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionParty`. */ -export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionParty`. */ export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyEdge = { @@ -97605,43 +97022,44 @@ export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionParty`. */ -export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionPartiesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionPartiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionParty`. */ -export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionParty`. */ -export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionParty`. */ export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyEdge = { @@ -97654,19 +97072,19 @@ export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionParty`. */ -export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionPartiesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionPartiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Leg`. */ export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection = { @@ -97685,12 +97103,12 @@ export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Leg`. */ -export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Leg`. */ export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdge = { @@ -97703,19 +97121,19 @@ export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Leg`. */ -export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdgeLegsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdgeLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Leg`. */ export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnection = { @@ -97734,12 +97152,12 @@ export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnec totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Leg`. */ -export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Leg`. */ export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdge = { @@ -97752,19 +97170,19 @@ export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdge = node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Leg`. */ -export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdgeLegsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdgeLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type InstructionDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -97976,7 +97394,7 @@ export enum InstructionEventEnum { VenueTypeUpdated = 'VenueTypeUpdated', VenueUnauthorized = 'VenueUnauthorized', VenuesAllowed = 'VenuesAllowed', - VenuesBlocked = 'VenuesBlocked' + VenuesBlocked = 'VenuesBlocked', } /** A filter to be used against InstructionEventEnum fields. All fields are combined with a logical ‘and.’ */ @@ -98155,7 +97573,6 @@ export type InstructionEventsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `InstructionEvent` values. */ export type InstructionEventsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -98185,7 +97602,7 @@ export enum InstructionEventsGroupBy { InstructionId = 'INSTRUCTION_ID', OffChainReceiptId = 'OFF_CHAIN_RECEIPT_ID', Portfolio = 'PORTFOLIO', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type InstructionEventsHavingAverageInput = { @@ -98283,7 +97700,7 @@ export enum InstructionEventsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A filter to be used against `Instruction` object types. All fields are combined with a logical ‘and.’ */ @@ -98353,53 +97770,55 @@ export type InstructionFilter = { }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection = { - __typename?: 'InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `InstructionParty` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `InstructionParty` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection = + { + __typename?: 'InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdge = { - __typename?: 'InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `InstructionParty` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdge = + { + __typename?: 'InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type InstructionMaxAggregateFilter = { endAfterBlock?: InputMaybe; @@ -98428,102 +97847,106 @@ export type InstructionMinAggregates = { }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmations: InstructionAffirmationsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ -export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ -export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ -export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - instructionEvents: InstructionEventsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ -export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `InstructionParty` values. */ export type InstructionPartiesConnection = { @@ -98542,7 +97965,6 @@ export type InstructionPartiesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `InstructionParty` values. */ export type InstructionPartiesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -98569,7 +97991,7 @@ export enum InstructionPartiesGroupBy { InstructionId = 'INSTRUCTION_ID', IsMediator = 'IS_MEDIATOR', Portfolios = 'PORTFOLIOS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type InstructionPartiesHavingAverageInput = { @@ -98897,7 +98319,7 @@ export enum InstructionPartiesOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type InstructionParty = Node & { @@ -98932,7 +98354,6 @@ export type InstructionParty = Node & { updatedBlockId: Scalars['String']['output']; }; - export type InstructionPartyAffirmationsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -98945,7 +98366,6 @@ export type InstructionPartyAffirmationsArgs = { orderBy?: InputMaybe>; }; - export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -98958,7 +98378,6 @@ export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlock orderBy?: InputMaybe>; }; - export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -98971,7 +98390,6 @@ export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlock orderBy?: InputMaybe>; }; - export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -98984,19 +98402,18 @@ export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstru orderBy?: InputMaybe>; }; - -export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type InstructionPartyPortfoliosArgs = { distinct?: InputMaybe>>; @@ -99018,28 +98435,29 @@ export type InstructionPartyAggregatesFilter = { }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyEdge = { @@ -99052,43 +98470,44 @@ export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlock node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyEdge = { @@ -99101,19 +98520,19 @@ export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlock node?: Maybe; }; - /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type InstructionPartyDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -99189,102 +98608,106 @@ export type InstructionPartyFilter = { }; /** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection = { - __typename?: 'InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection = + { + __typename?: 'InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdge = { - __typename?: 'InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Instruction` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdge = + { + __typename?: 'InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection = { - __typename?: 'InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `OffChainReceipt` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `OffChainReceipt` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ -export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdge = { - __typename?: 'InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmations: InstructionAffirmationsConnection; - /** The `OffChainReceipt` at the end of the edge. */ - node?: Maybe; -}; - +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; /** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ -export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `InstructionAffirmation` object types. All fields are combined with a logical ‘and.’ */ export type InstructionPartyToManyInstructionAffirmationFilter = { @@ -99299,28 +98722,29 @@ export type InstructionPartyToManyInstructionAffirmationFilter = { }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection = { - __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Portfolio` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Portfolio` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdge = { @@ -99333,43 +98757,44 @@ export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolio node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection = { - __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Portfolio` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Portfolio` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection = + { + __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdge = { @@ -99382,26 +98807,26 @@ export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioId node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** Represents all possible states of an Instruction */ export enum InstructionStatusEnum { Created = 'Created', Executed = 'Executed', Failed = 'Failed', - Rejected = 'Rejected' + Rejected = 'Rejected', } /** A filter to be used against InstructionStatusEnum fields. All fields are combined with a logical ‘and.’ */ @@ -99533,7 +98958,7 @@ export type InstructionToManyLegFilter = { export enum InstructionTypeEnum { SettleManual = 'SettleManual', SettleOnAffirmation = 'SettleOnAffirmation', - SettleOnBlock = 'SettleOnBlock' + SettleOnBlock = 'SettleOnBlock', } /** A filter to be used against InstructionTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -99605,7 +99030,6 @@ export type InstructionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Instruction` values. */ export type InstructionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -99642,7 +99066,7 @@ export enum InstructionsGroupBy { ValueDate = 'VALUE_DATE', ValueDateTruncatedToDay = 'VALUE_DATE_TRUNCATED_TO_DAY', ValueDateTruncatedToHour = 'VALUE_DATE_TRUNCATED_TO_HOUR', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export type InstructionsHavingAverageInput = { @@ -101016,7 +100440,7 @@ export enum InstructionsOrderBy { ValueDateAsc = 'VALUE_DATE_ASC', ValueDateDesc = 'VALUE_DATE_DESC', VenueIdAsc = 'VENUE_ID_ASC', - VenueIdDesc = 'VENUE_ID_DESC' + VenueIdDesc = 'VENUE_ID_DESC', } /** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */ @@ -101356,7 +100780,6 @@ export type InvestmentsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Investment` values. */ export type InvestmentsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -101390,7 +100813,7 @@ export enum InvestmentsGroupBy { RaiseTokenAmount = 'RAISE_TOKEN_AMOUNT', RaisingAssetId = 'RAISING_ASSET_ID', StoId = 'STO_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type InvestmentsHavingAverageInput = { @@ -101510,7 +100933,7 @@ export enum InvestmentsOrderBy { StoIdAsc = 'STO_ID_ASC', StoIdDesc = 'STO_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */ @@ -101588,7 +101011,6 @@ export type Leg = Node & { updatedBlockId: Scalars['String']['output']; }; - export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -101601,7 +101023,6 @@ export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -101614,7 +101035,6 @@ export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type LegOffChainReceiptsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -101710,12 +101130,12 @@ export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ -export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdge = { @@ -101728,19 +101148,19 @@ export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdge = { offChainReceiptsByCreatedBlockId: OffChainReceiptsConnection; }; - /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ -export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdgeOffChainReceiptsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdgeOffChainReceiptsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnection = { @@ -101759,12 +101179,12 @@ export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ -export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdge = { @@ -101777,19 +101197,19 @@ export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdge = { offChainReceiptsByUpdatedBlockId: OffChainReceiptsConnection; }; - /** A `Block` edge in the connection, with data from `OffChainReceipt`. */ -export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdgeOffChainReceiptsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdgeOffChainReceiptsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type LegDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -102015,7 +101435,7 @@ export type LegToManyOffChainReceiptFilter = { export enum LegTypeEnum { Fungible = 'Fungible', NonFungible = 'NonFungible', - OffChain = 'OffChain' + OffChain = 'OffChain', } /** A filter to be used against LegTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -102099,7 +101519,6 @@ export type LegsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Leg` values. */ export type LegsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -102134,7 +101553,7 @@ export enum LegsGroupBy { Ticker = 'TICKER', To = 'TO', ToPortfolio = 'TO_PORTFOLIO', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type LegsHavingAverageInput = { @@ -102424,7 +101843,7 @@ export enum LegsOrderBy { ToPortfolioAsc = 'TO_PORTFOLIO_ASC', ToPortfolioDesc = 'TO_PORTFOLIO_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Migration = Node & { @@ -102601,7 +102020,6 @@ export type MigrationsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Migration` values. */ export type MigrationsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -102626,7 +102044,7 @@ export enum MigrationsGroupBy { Id = 'ID', Number = 'NUMBER', ProcessedBlock = 'PROCESSED_BLOCK', - Version = 'VERSION' + Version = 'VERSION', } export type MigrationsHavingAverageInput = { @@ -102723,7 +102141,7 @@ export enum MigrationsOrderBy { ProcessedBlockAsc = 'PROCESSED_BLOCK_ASC', ProcessedBlockDesc = 'PROCESSED_BLOCK_DESC', VersionAsc = 'VERSION_ASC', - VersionDesc = 'VERSION_DESC' + VersionDesc = 'VERSION_DESC', } /** Represents all known chain "pallets" */ @@ -102786,7 +102204,7 @@ export enum ModuleIdEnum { Treasury = 'treasury', Upgradecommittee = 'upgradecommittee', Upgradecommitteemembership = 'upgradecommitteemembership', - Utility = 'utility' + Utility = 'utility', } /** A filter to be used against ModuleIdEnum fields. All fields are combined with a logical ‘and.’ */ @@ -102857,7 +102275,6 @@ export type MultiSig = Node & { updatedBlockId: Scalars['String']['output']; }; - export type MultiSigAdminsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102870,7 +102287,6 @@ export type MultiSigAdminsArgs = { orderBy?: InputMaybe>; }; - export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102883,7 +102299,6 @@ export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102896,7 +102311,6 @@ export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102909,7 +102323,6 @@ export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102922,7 +102335,6 @@ export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102935,7 +102347,6 @@ export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102948,7 +102359,6 @@ export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102961,7 +102371,6 @@ export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type MultiSigProposalsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -102974,7 +102383,6 @@ export type MultiSigProposalsArgs = { orderBy?: InputMaybe>; }; - export type MultiSigSignersArgs = { after?: InputMaybe; before?: InputMaybe; @@ -103088,7 +102496,7 @@ export type MultiSigAdminFilter = { /** Represents MultiSig signer status */ export enum MultiSigAdminStatusEnum { Authorized = 'Authorized', - Removed = 'Removed' + Removed = 'Removed', } /** A filter to be used against MultiSigAdminStatusEnum fields. All fields are combined with a logical ‘and.’ */ @@ -103134,7 +102542,6 @@ export type MultiSigAdminsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSigAdmin` values. */ export type MultiSigAdminsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -103160,7 +102567,7 @@ export enum MultiSigAdminsGroupBy { IdentityId = 'IDENTITY_ID', MultisigId = 'MULTISIG_ID', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type MultiSigAdminsHavingAverageInput = { @@ -103232,7 +102639,7 @@ export enum MultiSigAdminsOrderBy { StatusAsc = 'STATUS_ASC', StatusDesc = 'STATUS_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type MultiSigAggregates = { @@ -103309,12 +102716,12 @@ export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ -export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyEdge = { @@ -103327,19 +102734,19 @@ export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyEd node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ -export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigAdminsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigBlocksByMultiSigAdminMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigAdminsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyConnection = { @@ -103358,12 +102765,12 @@ export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigAdmin`. */ -export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyEdge = { @@ -103376,19 +102783,19 @@ export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyEd node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigAdmin`. */ -export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigAdminsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigBlocksByMultiSigAdminMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigAdminsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnection = { @@ -103407,12 +102814,12 @@ export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ -export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyEdge = { @@ -103425,19 +102832,19 @@ export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ -export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnection = { @@ -103456,12 +102863,12 @@ export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToMan totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ -export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyEdge = { @@ -103474,19 +102881,19 @@ export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposal`. */ -export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnection = { @@ -103505,12 +102912,12 @@ export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ -export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyEdge = { @@ -103523,19 +102930,19 @@ export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ -export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigSignersByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigSignersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnection = { @@ -103554,12 +102961,12 @@ export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ -export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyEdge = { @@ -103572,19 +102979,19 @@ export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigSigner`. */ -export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigSignersByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigSignersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type MultiSigDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -103686,12 +103093,12 @@ export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ -export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyEdge = { @@ -103704,19 +103111,19 @@ export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToMany node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ -export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type MultiSigMaxAggregateFilter = { signaturesRequired?: InputMaybe; @@ -103775,7 +103182,6 @@ export type MultiSigProposal = Node & { votes: MultiSigProposalVotesConnection; }; - export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -103788,7 +103194,6 @@ export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBloc orderBy?: InputMaybe>; }; - export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -103801,7 +103206,6 @@ export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBloc orderBy?: InputMaybe>; }; - export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -103814,7 +103218,6 @@ export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSi orderBy?: InputMaybe>; }; - export type MultiSigProposalVotesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -103897,102 +103300,106 @@ export type MultiSigProposalAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ - multiSigProposalVotesByCreatedBlockId: MultiSigProposalVotesConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByCreatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ - multiSigProposalVotesByUpdatedBlockId: MultiSigProposalVotesConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByUpdatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type MultiSigProposalDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -104151,53 +103558,55 @@ export type MultiSigProposalMinAggregates = { }; /** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection = { - __typename?: 'MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `MultiSigSigner` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `MultiSigSigner` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection = + { + __typename?: 'MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdge = { - __typename?: 'MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `MultiSigSigner` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ - votes: MultiSigProposalVotesConnection; -}; - +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdge = + { + __typename?: 'MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigSigner` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; /** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdgeVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type MultiSigProposalStddevPopulationAggregateFilter = { approvalCount?: InputMaybe; @@ -104348,7 +103757,7 @@ export type MultiSigProposalVote = Node & { /** Represents action performed on MultiSig proposal */ export enum MultiSigProposalVoteActionEnum { Approved = 'Approved', - Rejected = 'Rejected' + Rejected = 'Rejected', } /** A filter to be used against MultiSigProposalVoteActionEnum fields. All fields are combined with a logical ‘and.’ */ @@ -104626,7 +104035,6 @@ export type MultiSigProposalVotesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSigProposalVote` values. */ export type MultiSigProposalVotesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -104657,7 +104065,7 @@ export enum MultiSigProposalVotesGroupBy { Id = 'ID', ProposalId = 'PROPOSAL_ID', SignerId = 'SIGNER_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type MultiSigProposalVotesHavingAverageInput = { @@ -104762,7 +104170,7 @@ export enum MultiSigProposalVotesOrderBy { SignerIdAsc = 'SIGNER_ID_ASC', SignerIdDesc = 'SIGNER_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A connection to a list of `MultiSigProposal` values. */ @@ -104782,7 +104190,6 @@ export type MultiSigProposalsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSigProposal` values. */ export type MultiSigProposalsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -104818,7 +104225,7 @@ export enum MultiSigProposalsGroupBy { ProposalId = 'PROPOSAL_ID', RejectionCount = 'REJECTION_COUNT', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type MultiSigProposalsHavingAverageInput = { @@ -105160,7 +104567,7 @@ export enum MultiSigProposalsOrderBy { VotesVarianceSampleSignerIdAsc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_ASC', VotesVarianceSampleSignerIdDesc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_DESC', VotesVarianceSampleUpdatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', - VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC' + VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', } export type MultiSigSigner = Node & { @@ -105191,7 +104598,6 @@ export type MultiSigSigner = Node & { votes: MultiSigProposalVotesConnection; }; - export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -105204,7 +104610,6 @@ export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdA orderBy?: InputMaybe>; }; - export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -105217,7 +104622,6 @@ export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdA orderBy?: InputMaybe>; }; - export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -105230,7 +104634,6 @@ export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProp orderBy?: InputMaybe>; }; - export type MultiSigSignerVotesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -105259,28 +104662,29 @@ export type MultiSigSignerAggregatesFilter = { }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyEdge = { @@ -105293,43 +104697,44 @@ export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyEdge = { @@ -105342,19 +104747,19 @@ export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdM node?: Maybe; }; - /** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type MultiSigSignerDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -105430,59 +104835,61 @@ export type MultiSigSignerFilter = { }; /** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection = { - __typename?: 'MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `MultiSigProposal` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `MultiSigProposal` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection = + { + __typename?: 'MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdge = { - __typename?: 'MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `MultiSigProposal` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ - votes: MultiSigProposalVotesConnection; -}; - +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdge = + { + __typename?: 'MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; /** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ -export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdgeVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** Represents MultiSig signer status */ export enum MultiSigSignerStatusEnum { Approved = 'Approved', Authorized = 'Authorized', - Removed = 'Removed' + Removed = 'Removed', } /** A filter to be used against MultiSigSignerStatusEnum fields. All fields are combined with a logical ‘and.’ */ @@ -105540,7 +104947,6 @@ export type MultiSigSignersConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSigSigner` values. */ export type MultiSigSignersConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -105567,7 +104973,7 @@ export enum MultiSigSignersGroupBy { SignerType = 'SIGNER_TYPE', SignerValue = 'SIGNER_VALUE', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type MultiSigSignersHavingAverageInput = { @@ -105841,7 +105247,7 @@ export enum MultiSigSignersOrderBy { VotesVarianceSampleSignerIdAsc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_ASC', VotesVarianceSampleSignerIdDesc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_DESC', VotesVarianceSampleUpdatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', - VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC' + VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', } export type MultiSigStddevPopulationAggregateFilter = { @@ -105947,7 +105353,6 @@ export type MultiSigsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `MultiSig` values. */ export type MultiSigsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -105974,7 +105379,7 @@ export enum MultiSigsGroupBy { CreatorId = 'CREATOR_ID', Id = 'ID', SignaturesRequired = 'SIGNATURES_REQUIRED', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type MultiSigsHavingAverageInput = { @@ -106657,7 +106062,7 @@ export enum MultiSigsOrderBy { SignersVarianceSampleUpdatedBlockIdAsc = 'SIGNERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', SignersVarianceSampleUpdatedBlockIdDesc = 'SIGNERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type NftHolder = Node & { @@ -106779,7 +106184,6 @@ export type NftHoldersConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `NftHolder` values. */ export type NftHoldersConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -106805,7 +106209,7 @@ export enum NftHoldersGroupBy { Id = 'ID', IdentityId = 'IDENTITY_ID', NftIds = 'NFT_IDS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type NftHoldersHavingAverageInput = { @@ -106863,7 +106267,13 @@ export type NftHoldersHavingVarianceSampleInput = { export enum NftHoldersOrderBy { AssetIdAsc = 'ASSET_ID_ASC', AssetIdDesc = 'ASSET_ID_DESC', + /** + * @deprecated - Removed in SQ v19 updates `BlockIdAsc` to work instead + */ CreatedAtAsc = 'CREATED_AT_ASC', + /** + * @deprecated - Removed in SQ v19 updates `BlockIdDesc` to work instead + */ CreatedAtDesc = 'CREATED_AT_DESC', CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', @@ -106877,7 +106287,7 @@ export enum NftHoldersOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** An object with a globally unique `ID`. */ @@ -106924,7 +106334,6 @@ export type OffChainReceipt = Node & { updatedBlockId: Scalars['String']['output']; }; - export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -106937,7 +106346,6 @@ export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCre orderBy?: InputMaybe>; }; - export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -106950,7 +106358,6 @@ export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpd orderBy?: InputMaybe>; }; - export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -106963,7 +106370,6 @@ export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBl orderBy?: InputMaybe>; }; - export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -106976,7 +106382,6 @@ export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBl orderBy?: InputMaybe>; }; - export type OffChainReceiptInstructionAffirmationsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -106989,7 +106394,6 @@ export type OffChainReceiptInstructionAffirmationsArgs = { orderBy?: InputMaybe>; }; - export type OffChainReceiptInstructionEventsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -107002,32 +106406,31 @@ export type OffChainReceiptInstructionEventsArgs = { orderBy?: InputMaybe>; }; - -export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - - -export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdArgs = { after?: InputMaybe; @@ -107099,200 +106502,208 @@ export type OffChainReceiptAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdge = { - __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - instructionEventsByCreatedBlockId: InstructionEventsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByCreatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge = { - __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - instructionEventsByUpdatedBlockId: InstructionEventsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByUpdatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; /** A `Block` edge in the connection, with data from `InstructionEvent`. */ -export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type OffChainReceiptDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -107374,151 +106785,157 @@ export type OffChainReceiptFilter = { }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection = { - __typename?: 'OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `InstructionParty` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `InstructionParty` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection = + { + __typename?: 'OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdge = { - __typename?: 'OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `InstructionParty` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdge = + { + __typename?: 'OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; /** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection = { - __typename?: 'OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection = + { + __typename?: 'OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdge = { - __typename?: 'OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdge'; - /** Reads and enables pagination through a set of `InstructionAffirmation`. */ - affirmations: InstructionAffirmationsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Instruction` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdge = + { + __typename?: 'OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ -export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdgeAffirmationsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ -export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection = { - __typename?: 'OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection = + { + __typename?: 'OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ -export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ -export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdge = { - __typename?: 'OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `InstructionEvent`. */ - events: InstructionEventsConnection; - /** The `Instruction` at the end of the edge. */ - node?: Maybe; -}; - +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdge = + { + __typename?: 'OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + events: InstructionEventsConnection; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; /** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ -export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdgeEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type OffChainReceiptMaxAggregateFilter = { uid?: InputMaybe; @@ -107631,7 +107048,6 @@ export type OffChainReceiptsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `OffChainReceipt` values. */ export type OffChainReceiptsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -107658,7 +107074,7 @@ export enum OffChainReceiptsGroupBy { Metadata = 'METADATA', Signer = 'SIGNER', Uid = 'UID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type OffChainReceiptsHavingAverageInput = { @@ -108213,7 +107629,7 @@ export enum OffChainReceiptsOrderBy { UidAsc = 'UID_ASC', UidDesc = 'UID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** Information about pagination in a connection. */ @@ -108256,7 +107672,6 @@ export type Permission = Node & { updatedBlockId: Scalars['String']['output']; }; - export type PermissionAccountsByPermissionsIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -108269,12 +107684,10 @@ export type PermissionAccountsByPermissionsIdArgs = { orderBy?: InputMaybe>; }; - export type PermissionAssetsArgs = { distinct?: InputMaybe>>; }; - export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -108287,7 +107700,6 @@ export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -108300,7 +107712,6 @@ export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -108313,7 +107724,6 @@ export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type PermissionPortfoliosArgs = { distinct?: InputMaybe>>; }; @@ -108350,12 +107760,12 @@ export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Account`. */ -export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Account`. */ export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdge = { @@ -108368,19 +107778,19 @@ export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Account`. */ -export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Account`. */ export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnection = { @@ -108399,12 +107809,12 @@ export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Account`. */ -export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Account`. */ export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdge = { @@ -108417,19 +107827,19 @@ export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdg node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Account`. */ -export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type PermissionDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -108524,12 +107934,12 @@ export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Account`. */ -export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Account`. */ export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdge = { @@ -108542,19 +107952,19 @@ export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdg secondaryAccounts: AccountsConnection; }; - /** A `Identity` edge in the connection, with data from `Account`. */ -export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `Account` object types. All fields are combined with a logical ‘and.’ */ export type PermissionToManyAccountFilter = { @@ -108585,7 +107995,6 @@ export type PermissionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Permission` values. */ export type PermissionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -108615,7 +108024,7 @@ export enum PermissionsGroupBy { Portfolios = 'PORTFOLIOS', Transactions = 'TRANSACTIONS', TransactionGroups = 'TRANSACTION_GROUPS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type PermissionsHavingAverageInput = { @@ -108882,7 +108291,7 @@ export enum PermissionsOrderBy { TransactionGroupsAsc = 'TRANSACTION_GROUPS_ASC', TransactionGroupsDesc = 'TRANSACTION_GROUPS_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type PolyxTransaction = Node & { @@ -109198,7 +108607,6 @@ export type PolyxTransactionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `PolyxTransaction` values. */ export type PolyxTransactionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -109236,7 +108644,7 @@ export enum PolyxTransactionsGroupBy { ToAddress = 'TO_ADDRESS', ToId = 'TO_ID', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type PolyxTransactionsHavingAverageInput = { @@ -109355,7 +108763,7 @@ export enum PolyxTransactionsOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Portfolio = Node & { @@ -109466,7 +108874,6 @@ export type Portfolio = Node & { venuesByStoRaisingPortfolioIdAndVenueId: PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnection; }; - export type PortfolioAssetTransactionsByFromPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109479,7 +108886,6 @@ export type PortfolioAssetTransactionsByFromPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetTransactionsByToPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109492,7 +108898,6 @@ export type PortfolioAssetTransactionsByToPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109505,7 +108910,6 @@ export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109518,7 +108922,6 @@ export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109531,7 +108934,6 @@ export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109544,7 +108946,6 @@ export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109557,7 +108958,6 @@ export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109570,7 +108970,6 @@ export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109583,7 +108982,6 @@ export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109596,7 +108994,6 @@ export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109609,7 +109006,6 @@ export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdArg orderBy?: InputMaybe>; }; - export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109622,7 +109018,6 @@ export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdArg orderBy?: InputMaybe>; }; - export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109635,7 +109030,6 @@ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdArgs orderBy?: InputMaybe>; }; - export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109648,7 +109042,6 @@ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdArgs orderBy?: InputMaybe>; }; - export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109661,7 +109054,6 @@ export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109674,7 +109066,6 @@ export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109687,7 +109078,6 @@ export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109700,7 +109090,6 @@ export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109713,7 +109102,6 @@ export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109726,7 +109114,6 @@ export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109739,7 +109126,6 @@ export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109752,7 +109138,6 @@ export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109765,7 +109150,6 @@ export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109778,7 +109162,6 @@ export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioDistributionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109791,7 +109174,6 @@ export type PortfolioDistributionsArgs = { orderBy?: InputMaybe>; }; - export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109804,7 +109186,6 @@ export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109817,7 +109198,6 @@ export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109830,7 +109210,6 @@ export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109843,7 +109222,6 @@ export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstruction orderBy?: InputMaybe>; }; - export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109856,7 +109234,6 @@ export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionId orderBy?: InputMaybe>; }; - export type PortfolioPortfolioMovementsByFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109869,7 +109246,6 @@ export type PortfolioPortfolioMovementsByFromIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioPortfolioMovementsByToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109882,7 +109258,6 @@ export type PortfolioPortfolioMovementsByToIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109895,7 +109270,6 @@ export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioId orderBy?: InputMaybe>; }; - export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109908,7 +109282,6 @@ export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioId orderBy?: InputMaybe>; }; - export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109921,7 +109294,6 @@ export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109934,7 +109306,6 @@ export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109947,7 +109318,6 @@ export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdArgs orderBy?: InputMaybe>; }; - export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109960,7 +109330,6 @@ export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdArgs orderBy?: InputMaybe>; }; - export type PortfolioStosByOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109973,7 +109342,6 @@ export type PortfolioStosByOfferingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioStosByRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109986,7 +109354,6 @@ export type PortfolioStosByRaisingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -109999,7 +109366,6 @@ export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdArgs = { orderBy?: InputMaybe>; }; - export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -110076,12 +109442,12 @@ export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ -export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyEdge = { @@ -110094,19 +109460,19 @@ export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToMany node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnection = { @@ -110125,12 +109491,12 @@ export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ -export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEdge = { @@ -110143,19 +109509,19 @@ export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEd node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Distribution`. */ export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnection = { @@ -110174,12 +109540,12 @@ export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyEdge = { @@ -110192,7 +109558,6 @@ export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyEdge = { node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyEdgeDistributionsArgs = { after?: InputMaybe; @@ -110223,12 +109588,12 @@ export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyConne totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Distribution`. */ -export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Distribution`. */ export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyEdge = { @@ -110241,19 +109606,19 @@ export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyEdge node?: Maybe; }; - /** A `Asset` edge in the connection, with data from `Distribution`. */ -export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioAssetsByDistributionPortfolioIdAndCurrencyIdManyToManyEdgeDistributionsByCurrencyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnection = { @@ -110272,12 +109637,12 @@ export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnecti totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ -export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdge = { @@ -110290,19 +109655,19 @@ export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdge = { portfolioMovements: PortfolioMovementsConnection; }; - /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnection = { @@ -110321,12 +109686,12 @@ export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ -export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyEdge = { @@ -110339,7 +109704,6 @@ export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyEdge = { portfolioMovements: PortfolioMovementsConnection; }; - /** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = { after?: InputMaybe; @@ -110370,12 +109734,12 @@ export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Sto`. */ -export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Sto`. */ export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyEdge = { @@ -110388,19 +109752,19 @@ export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyE stosByOfferingAssetId: StosConnection; }; - /** A `Asset` edge in the connection, with data from `Sto`. */ -export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Asset` values, with data from `Sto`. */ export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnection = { @@ -110419,12 +109783,12 @@ export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Sto`. */ -export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `Sto`. */ export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEdge = { @@ -110437,19 +109801,19 @@ export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEd stosByOfferingAssetId: StosConnection; }; - /** A `Asset` edge in the connection, with data from `Sto`. */ -export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type PortfolioAverageAggregateFilter = { eventIdx?: InputMaybe; @@ -110465,28 +109829,29 @@ export type PortfolioAverageAggregates = { }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection = { - __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyEdge = { @@ -110499,43 +109864,44 @@ export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection = { - __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Block` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Block` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyEdge = { @@ -110548,19 +109914,19 @@ export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdMan node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnection = { @@ -110579,12 +109945,12 @@ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyEdge = { @@ -110597,19 +109963,19 @@ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyT node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnection = { @@ -110628,12 +109994,12 @@ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyT totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyEdge = { @@ -110646,19 +110012,19 @@ export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyT node?: Maybe; }; - /** A `Block` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnection = { @@ -110677,12 +110043,12 @@ export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyEdge = { @@ -110695,19 +110061,19 @@ export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Distribution`. */ export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnection = { @@ -110726,12 +110092,12 @@ export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Distribution`. */ -export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Distribution`. */ export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyEdge = { @@ -110744,19 +110110,19 @@ export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyE node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Distribution`. */ -export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnection = { @@ -110775,12 +110141,12 @@ export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyEdge = { @@ -110793,19 +110159,19 @@ export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyE portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnection = { @@ -110824,12 +110190,12 @@ export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyEdge = { @@ -110842,19 +110208,19 @@ export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyE portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnection = { @@ -110873,12 +110239,12 @@ export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdge = { @@ -110891,19 +110257,19 @@ export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdg portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnection = { @@ -110922,12 +110288,12 @@ export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdge = { @@ -110940,19 +110306,19 @@ export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdg portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; }; - /** A `Block` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnection = { @@ -110971,12 +110337,12 @@ export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEdge = { @@ -110989,19 +110355,19 @@ export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEd stosByCreatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnection = { @@ -111020,12 +110386,12 @@ export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyCo totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEdge = { @@ -111038,19 +110404,19 @@ export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEd stosByUpdatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnection = { @@ -111069,12 +110435,12 @@ export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdge = { @@ -111087,19 +110453,19 @@ export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdg stosByCreatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnection = { @@ -111118,12 +110484,12 @@ export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ -export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Sto`. */ export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdge = { @@ -111136,19 +110502,19 @@ export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdg stosByUpdatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ -export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type PortfolioDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -111278,12 +110644,12 @@ export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyC totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Distribution`. */ -export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Distribution`. */ export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyEdge = { @@ -111296,19 +110662,19 @@ export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyE node?: Maybe; }; - /** A `Identity` edge in the connection, with data from `Distribution`. */ -export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyEdgeDistributionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Sto`. */ export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnection = { @@ -111327,12 +110693,12 @@ export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Sto`. */ -export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Sto`. */ export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdge = { @@ -111345,19 +110711,19 @@ export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdg stosByCreatorId: StosConnection; }; - /** A `Identity` edge in the connection, with data from `Sto`. */ -export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Identity` values, with data from `Sto`. */ export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnection = { @@ -111376,12 +110742,12 @@ export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Sto`. */ -export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `Sto`. */ export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdge = { @@ -111394,43 +110760,44 @@ export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdge stosByCreatorId: StosConnection; }; - /** A `Identity` edge in the connection, with data from `Sto`. */ -export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection = { - __typename?: 'PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection = + { + __typename?: 'PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdge = { @@ -111443,43 +110810,44 @@ export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstruction node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection = { - __typename?: 'PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Instruction` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Instruction` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection = + { + __typename?: 'PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ -export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdge = { @@ -111492,19 +110860,19 @@ export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionId node?: Maybe; }; - /** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type PortfolioMaxAggregateFilter = { eventIdx?: InputMaybe; @@ -111764,7 +111132,7 @@ export type PortfolioMovementSumAggregates = { export enum PortfolioMovementTypeEnum { Fungible = 'Fungible', - NonFungible = 'NonFungible' + NonFungible = 'NonFungible', } /** A filter to be used against PortfolioMovementTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -111830,7 +111198,6 @@ export type PortfolioMovementsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `PortfolioMovement` values. */ export type PortfolioMovementsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -111861,7 +111228,7 @@ export enum PortfolioMovementsGroupBy { NftIds = 'NFT_IDS', ToId = 'TO_ID', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type PortfolioMovementsHavingAverageInput = { @@ -111952,32 +111319,33 @@ export enum PortfolioMovementsOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection = { - __typename?: 'PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Portfolio` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Portfolio` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection = + { + __typename?: 'PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyEdge = { @@ -111990,43 +111358,44 @@ export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioId node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection = { - __typename?: 'PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Portfolio` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Portfolio` you could get from the connection. */ - totalCount: Scalars['Int']['output']; -}; - +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; /** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ -export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyEdge = { @@ -112039,19 +111408,19 @@ export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioId node?: Maybe; }; - /** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ -export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnection = { @@ -112070,12 +111439,12 @@ export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdge = { @@ -112088,19 +111457,19 @@ export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdge = portfolioMovementsByToId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnection = { @@ -112119,12 +111488,12 @@ export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnect totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ -export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdge = { @@ -112137,19 +111506,19 @@ export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdge = portfolioMovementsByFromId: PortfolioMovementsConnection; }; - /** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ -export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnection = { @@ -112168,12 +111537,12 @@ export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyEdge = { @@ -112186,19 +111555,19 @@ export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdMany stosByRaisingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnection = { @@ -112217,12 +111586,12 @@ export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyEdge = { @@ -112235,19 +111604,19 @@ export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdMany stosByOfferingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type PortfolioStddevPopulationAggregateFilter = { eventIdx?: InputMaybe; @@ -112379,12 +111748,12 @@ export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Sto`. */ -export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Venue` edge in the connection, with data from `Sto`. */ export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyEdge = { @@ -112397,7 +111766,6 @@ export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyEdge = { stos: StosConnection; }; - /** A `Venue` edge in the connection, with data from `Sto`. */ export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyEdgeStosArgs = { after?: InputMaybe; @@ -112428,12 +111796,12 @@ export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values, with data from `Sto`. */ -export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Venue` edge in the connection, with data from `Sto`. */ export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyEdge = { @@ -112446,7 +111814,6 @@ export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyEdge = { stos: StosConnection; }; - /** A `Venue` edge in the connection, with data from `Sto`. */ export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyEdgeStosArgs = { after?: InputMaybe; @@ -112477,7 +111844,6 @@ export type PortfoliosConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values. */ export type PortfoliosConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -112508,7 +111874,7 @@ export enum PortfoliosGroupBy { IdentityId = 'IDENTITY_ID', Name = 'NAME', Number = 'NUMBER', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type PortfoliosHavingAverageInput = { @@ -114679,7 +114045,7 @@ export enum PortfoliosOrderBy { StosByRaisingPortfolioIdVarianceSampleVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', StosByRaisingPortfolioIdVarianceSampleVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Proposal = Node & { @@ -114713,7 +114079,6 @@ export type Proposal = Node & { votes: ProposalVotesConnection; }; - export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -114726,7 +114091,6 @@ export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -114739,7 +114103,6 @@ export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type ProposalVotesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -114832,12 +114195,12 @@ export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ProposalVote`. */ export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge = { @@ -114850,19 +114213,19 @@ export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdg proposalVotesByCreatedBlockId: ProposalVotesConnection; }; - /** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdgeProposalVotesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdgeProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `ProposalVote`. */ export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection = { @@ -114881,12 +114244,12 @@ export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyCon totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `ProposalVote`. */ export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge = { @@ -114899,19 +114262,19 @@ export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdg proposalVotesByUpdatedBlockId: ProposalVotesConnection; }; - /** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdgeProposalVotesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdgeProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type ProposalDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -115051,7 +114414,7 @@ export enum ProposalStateEnum { Failed = 'Failed', Pending = 'Pending', Rejected = 'Rejected', - Scheduled = 'Scheduled' + Scheduled = 'Scheduled', } /** A filter to be used against ProposalStateEnum fields. All fields are combined with a logical ‘and.’ */ @@ -115405,7 +114768,6 @@ export type ProposalVotesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `ProposalVote` values. */ export type ProposalVotesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -115432,7 +114794,7 @@ export enum ProposalVotesGroupBy { ProposalId = 'PROPOSAL_ID', UpdatedBlockId = 'UPDATED_BLOCK_ID', Vote = 'VOTE', - Weight = 'WEIGHT' + Weight = 'WEIGHT', } export type ProposalVotesHavingAverageInput = { @@ -115515,7 +114877,7 @@ export enum ProposalVotesOrderBy { VoteAsc = 'VOTE_ASC', VoteDesc = 'VOTE_DESC', WeightAsc = 'WEIGHT_ASC', - WeightDesc = 'WEIGHT_DESC' + WeightDesc = 'WEIGHT_DESC', } /** A connection to a list of `Proposal` values. */ @@ -115535,7 +114897,6 @@ export type ProposalsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Proposal` values. */ export type ProposalsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -115567,7 +114928,7 @@ export enum ProposalsGroupBy { TotalAyeWeight = 'TOTAL_AYE_WEIGHT', TotalNayWeight = 'TOTAL_NAY_WEIGHT', UpdatedBlockId = 'UPDATED_BLOCK_ID', - Url = 'URL' + Url = 'URL', } export type ProposalsHavingAverageInput = { @@ -115842,7 +115203,7 @@ export enum ProposalsOrderBy { VotesVarianceSampleVoteAsc = 'VOTES_VARIANCE_SAMPLE_VOTE_ASC', VotesVarianceSampleVoteDesc = 'VOTES_VARIANCE_SAMPLE_VOTE_DESC', VotesVarianceSampleWeightAsc = 'VOTES_VARIANCE_SAMPLE_WEIGHT_ASC', - VotesVarianceSampleWeightDesc = 'VOTES_VARIANCE_SAMPLE_WEIGHT_DESC' + VotesVarianceSampleWeightDesc = 'VOTES_VARIANCE_SAMPLE_WEIGHT_DESC', } /** The root query type which gives access points into the data universe. */ @@ -116196,34 +115557,29 @@ export type Query = Node & { venues?: Maybe; }; - /** The root query type which gives access points into the data universe. */ export type Query_MetadataArgs = { chainId?: InputMaybe; }; - /** The root query type which gives access points into the data universe. */ export type Query_MetadatasArgs = { after?: InputMaybe; before?: InputMaybe; }; - /** The root query type which gives access points into the data universe. */ export type QueryAccountArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAccountByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAccountHistoriesArgs = { after?: InputMaybe; @@ -116237,21 +115593,18 @@ export type QueryAccountHistoriesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAccountHistoryArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAccountHistoryByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAccountsArgs = { after?: InputMaybe; @@ -116265,35 +115618,30 @@ export type QueryAccountsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAgentGroupArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAgentGroupByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAgentGroupMembershipArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAgentGroupMembershipByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAgentGroupMembershipsArgs = { after?: InputMaybe; @@ -116307,7 +115655,6 @@ export type QueryAgentGroupMembershipsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAgentGroupsArgs = { after?: InputMaybe; @@ -116321,35 +115668,30 @@ export type QueryAgentGroupsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetDocumentArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetDocumentByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetDocumentsArgs = { after?: InputMaybe; @@ -116363,21 +115705,18 @@ export type QueryAssetDocumentsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetHolderArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetHolderByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetHoldersArgs = { after?: InputMaybe; @@ -116391,21 +115730,18 @@ export type QueryAssetHoldersArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetMandatoryMediatorArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetMandatoryMediatorByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetMandatoryMediatorsArgs = { after?: InputMaybe; @@ -116419,21 +115755,18 @@ export type QueryAssetMandatoryMediatorsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetPreApprovalArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetPreApprovalByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetPreApprovalsArgs = { after?: InputMaybe; @@ -116447,21 +115780,18 @@ export type QueryAssetPreApprovalsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetTransactionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetTransactionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetTransactionsArgs = { after?: InputMaybe; @@ -116475,7 +115805,6 @@ export type QueryAssetTransactionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAssetsArgs = { after?: InputMaybe; @@ -116489,21 +115818,18 @@ export type QueryAssetsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryAuthorizationArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAuthorizationByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryAuthorizationsArgs = { after?: InputMaybe; @@ -116517,21 +115843,18 @@ export type QueryAuthorizationsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryBlockArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryBlockByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryBlocksArgs = { after?: InputMaybe; @@ -116545,21 +115868,18 @@ export type QueryBlocksArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryBridgeEventArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryBridgeEventByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryBridgeEventsArgs = { after?: InputMaybe; @@ -116573,7 +115893,6 @@ export type QueryBridgeEventsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryChildIdentitiesArgs = { after?: InputMaybe; @@ -116587,49 +115906,42 @@ export type QueryChildIdentitiesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryChildIdentityArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryChildIdentityByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryClaimArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryClaimByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryClaimScopeArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryClaimScopeByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryClaimScopesArgs = { after?: InputMaybe; @@ -116643,7 +115955,6 @@ export type QueryClaimScopesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryClaimsArgs = { after?: InputMaybe; @@ -116657,21 +115968,18 @@ export type QueryClaimsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryComplianceArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryComplianceByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryCompliancesArgs = { after?: InputMaybe; @@ -116685,21 +115993,18 @@ export type QueryCompliancesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAccountArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAccountByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAccountsArgs = { after?: InputMaybe; @@ -116713,21 +116018,18 @@ export type QueryConfidentialAccountsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetHistoriesArgs = { after?: InputMaybe; @@ -116741,35 +116043,30 @@ export type QueryConfidentialAssetHistoriesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetHistoryArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetHistoryByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetHolderArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetHolderByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetHoldersArgs = { after?: InputMaybe; @@ -116783,21 +116080,18 @@ export type QueryConfidentialAssetHoldersArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetMovementArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetMovementByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetMovementsArgs = { after?: InputMaybe; @@ -116811,7 +116105,6 @@ export type QueryConfidentialAssetMovementsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialAssetsArgs = { after?: InputMaybe; @@ -116825,21 +116118,18 @@ export type QueryConfidentialAssetsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialLegArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialLegByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialLegsArgs = { after?: InputMaybe; @@ -116853,28 +116143,24 @@ export type QueryConfidentialLegsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialTransactionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialTransactionAffirmationArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialTransactionAffirmationByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialTransactionAffirmationsArgs = { after?: InputMaybe; @@ -116888,14 +116174,12 @@ export type QueryConfidentialTransactionAffirmationsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialTransactionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialTransactionsArgs = { after?: InputMaybe; @@ -116909,21 +116193,18 @@ export type QueryConfidentialTransactionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialVenueArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialVenueByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryConfidentialVenuesArgs = { after?: InputMaybe; @@ -116937,21 +116218,18 @@ export type QueryConfidentialVenuesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryCustomClaimTypeArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryCustomClaimTypeByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryCustomClaimTypesArgs = { after?: InputMaybe; @@ -116965,21 +116243,18 @@ export type QueryCustomClaimTypesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryDebugArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryDebugByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryDebugsArgs = { after?: InputMaybe; @@ -116993,35 +116268,30 @@ export type QueryDebugsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryDistributionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryDistributionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryDistributionPaymentArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryDistributionPaymentByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryDistributionPaymentsArgs = { after?: InputMaybe; @@ -117035,7 +116305,6 @@ export type QueryDistributionPaymentsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryDistributionsArgs = { after?: InputMaybe; @@ -117049,21 +116318,18 @@ export type QueryDistributionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryEventArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryEventByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryEventsArgs = { after?: InputMaybe; @@ -117077,21 +116343,18 @@ export type QueryEventsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryExtrinsicArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryExtrinsicByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryExtrinsicsArgs = { after?: InputMaybe; @@ -117105,21 +116368,18 @@ export type QueryExtrinsicsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryFoundTypeArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryFoundTypeByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryFoundTypesArgs = { after?: InputMaybe; @@ -117133,21 +116393,18 @@ export type QueryFoundTypesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryFundingArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryFundingByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryFundingsArgs = { after?: InputMaybe; @@ -117161,7 +116418,6 @@ export type QueryFundingsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryIdentitiesArgs = { after?: InputMaybe; @@ -117175,42 +116431,36 @@ export type QueryIdentitiesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryIdentityArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryIdentityByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionAffirmationArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionAffirmationByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionAffirmationsArgs = { after?: InputMaybe; @@ -117224,28 +116474,24 @@ export type QueryInstructionAffirmationsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionEventArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionEventByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionEventsArgs = { after?: InputMaybe; @@ -117259,7 +116505,6 @@ export type QueryInstructionEventsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionPartiesArgs = { after?: InputMaybe; @@ -117273,21 +116518,18 @@ export type QueryInstructionPartiesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionPartyArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionPartyByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInstructionsArgs = { after?: InputMaybe; @@ -117301,21 +116543,18 @@ export type QueryInstructionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryInvestmentArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInvestmentByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryInvestmentsArgs = { after?: InputMaybe; @@ -117329,21 +116568,18 @@ export type QueryInvestmentsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryLegArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryLegByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryLegsArgs = { after?: InputMaybe; @@ -117357,21 +116593,18 @@ export type QueryLegsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryMigrationArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMigrationByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMigrationsArgs = { after?: InputMaybe; @@ -117385,28 +116618,24 @@ export type QueryMigrationsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigAdminArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigAdminByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigAdminsArgs = { after?: InputMaybe; @@ -117420,42 +116649,36 @@ export type QueryMultiSigAdminsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigProposalArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigProposalByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigProposalVoteArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigProposalVoteByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigProposalVotesArgs = { after?: InputMaybe; @@ -117469,7 +116692,6 @@ export type QueryMultiSigProposalVotesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigProposalsArgs = { after?: InputMaybe; @@ -117483,21 +116705,18 @@ export type QueryMultiSigProposalsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigSignerArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigSignerByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigSignersArgs = { after?: InputMaybe; @@ -117511,7 +116730,6 @@ export type QueryMultiSigSignersArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryMultiSigsArgs = { after?: InputMaybe; @@ -117525,21 +116743,18 @@ export type QueryMultiSigsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryNftHolderArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryNftHolderByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryNftHoldersArgs = { after?: InputMaybe; @@ -117553,27 +116768,23 @@ export type QueryNftHoldersArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryNodeArgs = { nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryOffChainReceiptArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryOffChainReceiptByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryOffChainReceiptsArgs = { after?: InputMaybe; @@ -117587,21 +116798,18 @@ export type QueryOffChainReceiptsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryPermissionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPermissionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPermissionsArgs = { after?: InputMaybe; @@ -117615,21 +116823,18 @@ export type QueryPermissionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryPolyxTransactionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPolyxTransactionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPolyxTransactionsArgs = { after?: InputMaybe; @@ -117643,35 +116848,30 @@ export type QueryPolyxTransactionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryPortfolioArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPortfolioByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPortfolioMovementArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPortfolioMovementByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryPortfolioMovementsArgs = { after?: InputMaybe; @@ -117685,7 +116885,6 @@ export type QueryPortfolioMovementsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryPortfoliosArgs = { after?: InputMaybe; @@ -117699,35 +116898,30 @@ export type QueryPortfoliosArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryProposalArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryProposalByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryProposalVoteArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryProposalVoteByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryProposalVotesArgs = { after?: InputMaybe; @@ -117741,7 +116935,6 @@ export type QueryProposalVotesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryProposalsArgs = { after?: InputMaybe; @@ -117755,21 +116948,18 @@ export type QueryProposalsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryStakingEventArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryStakingEventByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryStakingEventsArgs = { after?: InputMaybe; @@ -117783,21 +116973,18 @@ export type QueryStakingEventsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryStatTypeArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryStatTypeByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryStatTypesArgs = { after?: InputMaybe; @@ -117811,21 +116998,18 @@ export type QueryStatTypesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryStoArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryStoByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryStosArgs = { after?: InputMaybe; @@ -117839,21 +117023,18 @@ export type QueryStosArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QuerySubqueryVersionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QuerySubqueryVersionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QuerySubqueryVersionsArgs = { after?: InputMaybe; @@ -117867,28 +117048,24 @@ export type QuerySubqueryVersionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentActionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentActionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentActionsArgs = { after?: InputMaybe; @@ -117902,14 +117079,12 @@ export type QueryTickerExternalAgentActionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentHistoriesArgs = { after?: InputMaybe; @@ -117923,21 +117098,18 @@ export type QueryTickerExternalAgentHistoriesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentHistoryArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentHistoryByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTickerExternalAgentsArgs = { after?: InputMaybe; @@ -117951,35 +117123,30 @@ export type QueryTickerExternalAgentsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferComplianceArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferComplianceByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferComplianceExemptionArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferComplianceExemptionByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferComplianceExemptionsArgs = { after?: InputMaybe; @@ -117993,7 +117160,6 @@ export type QueryTransferComplianceExemptionsArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferCompliancesArgs = { after?: InputMaybe; @@ -118007,21 +117173,18 @@ export type QueryTransferCompliancesArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferManagerArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferManagerByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTransferManagersArgs = { after?: InputMaybe; @@ -118035,21 +117198,18 @@ export type QueryTransferManagersArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryTrustedClaimIssuerArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTrustedClaimIssuerByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryTrustedClaimIssuersArgs = { after?: InputMaybe; @@ -118063,21 +117223,18 @@ export type QueryTrustedClaimIssuersArgs = { orderBy?: InputMaybe>; }; - /** The root query type which gives access points into the data universe. */ export type QueryVenueArgs = { blockHeight?: InputMaybe; id: Scalars['String']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryVenueByNodeIdArgs = { distinct?: InputMaybe>>; nodeId: Scalars['ID']['input']; }; - /** The root query type which gives access points into the data universe. */ export type QueryVenuesArgs = { after?: InputMaybe; @@ -118094,7 +117251,7 @@ export type QueryVenuesArgs = { /** Represents signer types */ export enum SignerTypeEnum { Account = 'Account', - Identity = 'Identity' + Identity = 'Identity', } /** A filter to be used against SignerTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -118376,7 +117533,6 @@ export type StakingEventsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `StakingEvent` values. */ export type StakingEventsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -118408,7 +117564,7 @@ export enum StakingEventsGroupBy { NominatedValidators = 'NOMINATED_VALIDATORS', StashAccount = 'STASH_ACCOUNT', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type StakingEventsHavingAverageInput = { @@ -118506,13 +117662,13 @@ export enum StakingEventsOrderBy { TransactionIdAsc = 'TRANSACTION_ID_ASC', TransactionIdDesc = 'TRANSACTION_ID_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** Represents all known stat types */ export enum StatOpTypeEnum { Balance = 'Balance', - Count = 'Count' + Count = 'Count', } /** A filter to be used against StatOpTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -118576,7 +117732,6 @@ export type StatType = Node & { updatedBlockId: Scalars['String']['output']; }; - export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -118589,7 +117744,6 @@ export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdArgs = { orderBy?: InputMaybe>; }; - export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -118602,7 +117756,6 @@ export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -118615,7 +117768,6 @@ export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdArgs = orderBy?: InputMaybe>; }; - export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -118628,7 +117780,6 @@ export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdArgs orderBy?: InputMaybe>; }; - export type StatTypeTransferCompliancesArgs = { after?: InputMaybe; before?: InputMaybe; @@ -118673,12 +117824,12 @@ export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConn totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ -export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdge = { @@ -118691,19 +117842,19 @@ export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdge transferCompliances: TransferCompliancesConnection; }; - /** A `Asset` edge in the connection, with data from `TransferCompliance`. */ -export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnection = { @@ -118722,12 +117873,12 @@ export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyEdge = { @@ -118740,19 +117891,19 @@ export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToM transferCompliancesByCreatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnection = { @@ -118771,12 +117922,12 @@ export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToM totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `TransferCompliance`. */ -export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `TransferCompliance`. */ export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyEdge = { @@ -118789,19 +117940,19 @@ export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToM transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; }; - /** A `Block` edge in the connection, with data from `TransferCompliance`. */ -export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; export type StatTypeDistinctCountAggregateFilter = { _blockRange?: InputMaybe; @@ -118906,12 +118057,12 @@ export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdMany totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ -export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyEdge = { @@ -118924,19 +118075,19 @@ export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdMany transferCompliancesByClaimIssuerId: TransferCompliancesConnection; }; - /** A `Identity` edge in the connection, with data from `TransferCompliance`. */ -export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ export type StatTypeToManyTransferComplianceFilter = { @@ -118967,7 +118118,6 @@ export type StatTypesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `StatType` values. */ export type StatTypesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -118995,7 +118145,7 @@ export enum StatTypesGroupBy { CustomClaimTypeId = 'CUSTOM_CLAIM_TYPE_ID', Id = 'ID', OpType = 'OP_TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type StatTypesHavingAverageInput = { @@ -119325,7 +118475,7 @@ export enum StatTypesOrderBy { TransferCompliancesVarianceSampleValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_VALUE_ASC', TransferCompliancesVarianceSampleValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_VALUE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Sto = Node & { @@ -119585,7 +118735,7 @@ export enum StoStatus { Closed = 'Closed', ClosedEarly = 'ClosedEarly', Frozen = 'Frozen', - Live = 'Live' + Live = 'Live', } /** A filter to be used against StoStatus fields. All fields are combined with a logical ‘and.’ */ @@ -119696,7 +118846,6 @@ export type StosConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Sto` values. */ export type StosConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -119737,7 +118886,7 @@ export enum StosGroupBy { StoId = 'STO_ID', Tiers = 'TIERS', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export type StosHavingAverageInput = { @@ -119867,7 +119016,7 @@ export enum StosOrderBy { UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', VenueIdAsc = 'VENUE_ID_ASC', - VenueIdDesc = 'VENUE_ID_DESC' + VenueIdDesc = 'VENUE_ID_DESC', } /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */ @@ -120016,7 +119165,6 @@ export type SubqueryVersionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `SubqueryVersion` values. */ export type SubqueryVersionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -120041,7 +119189,7 @@ export enum SubqueryVersionsGroupBy { UpdatedAt = 'UPDATED_AT', UpdatedAtTruncatedToDay = 'UPDATED_AT_TRUNCATED_TO_DAY', UpdatedAtTruncatedToHour = 'UPDATED_AT_TRUNCATED_TO_HOUR', - Version = 'VERSION' + Version = 'VERSION', } export type SubqueryVersionsHavingAverageInput = { @@ -120116,7 +119264,7 @@ export enum SubqueryVersionsOrderBy { UpdatedAtAsc = 'UPDATED_AT_ASC', UpdatedAtDesc = 'UPDATED_AT_DESC', VersionAsc = 'VERSION_ASC', - VersionDesc = 'VERSION_DESC' + VersionDesc = 'VERSION_DESC', } export type TableEstimate = { @@ -120392,7 +119540,6 @@ export type TickerExternalAgentActionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TickerExternalAgentAction` values. */ export type TickerExternalAgentActionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -120420,7 +119567,7 @@ export enum TickerExternalAgentActionsGroupBy { EventIdx = 'EVENT_IDX', Id = 'ID', PalletName = 'PALLET_NAME', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type TickerExternalAgentActionsHavingAverageInput = { @@ -120505,7 +119652,7 @@ export enum TickerExternalAgentActionsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type TickerExternalAgentAggregates = { @@ -120653,7 +119800,6 @@ export type TickerExternalAgentHistoriesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TickerExternalAgentHistory` values. */ export type TickerExternalAgentHistoriesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -120684,7 +119830,7 @@ export enum TickerExternalAgentHistoriesGroupBy { IdentityId = 'IDENTITY_ID', Permissions = 'PERMISSIONS', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type TickerExternalAgentHistoriesHavingAverageInput = { @@ -120780,7 +119926,7 @@ export enum TickerExternalAgentHistoriesOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type TickerExternalAgentHistory = Node & { @@ -120807,7 +119953,6 @@ export type TickerExternalAgentHistory = Node & { updatedBlockId: Scalars['String']['output']; }; - export type TickerExternalAgentHistoryPermissionsArgs = { distinct?: InputMaybe>>; }; @@ -121107,7 +120252,6 @@ export type TickerExternalAgentsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TickerExternalAgent` values. */ export type TickerExternalAgentsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -121136,7 +120280,7 @@ export enum TickerExternalAgentsGroupBy { DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', EventIdx = 'EVENT_IDX', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type TickerExternalAgentsHavingAverageInput = { @@ -121228,7 +120372,7 @@ export enum TickerExternalAgentsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type TransferCompliance = Node & { @@ -121496,7 +120640,6 @@ export type TransferComplianceExemptionsConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TransferComplianceExemption` values. */ export type TransferComplianceExemptionsConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -121523,7 +120666,7 @@ export enum TransferComplianceExemptionsGroupBy { ExemptedEntityId = 'EXEMPTED_ENTITY_ID', Id = 'ID', OpType = 'OP_TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type TransferComplianceExemptionsHavingAverageInput = { @@ -121597,7 +120740,7 @@ export enum TransferComplianceExemptionsOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } /** A filter to be used against `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ @@ -121733,7 +120876,7 @@ export enum TransferComplianceTypeEnum { ClaimCount = 'ClaimCount', ClaimOwnership = 'ClaimOwnership', MaxInvestorCount = 'MaxInvestorCount', - MaxInvestorOwnership = 'MaxInvestorOwnership' + MaxInvestorOwnership = 'MaxInvestorOwnership', } /** A filter to be used against TransferComplianceTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -121811,7 +120954,6 @@ export type TransferCompliancesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TransferCompliance` values. */ export type TransferCompliancesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -121843,7 +120985,7 @@ export enum TransferCompliancesGroupBy { StatTypeId = 'STAT_TYPE_ID', Type = 'TYPE', UpdatedBlockId = 'UPDATED_BLOCK_ID', - Value = 'VALUE' + Value = 'VALUE', } export type TransferCompliancesHavingAverageInput = { @@ -121954,7 +121096,7 @@ export enum TransferCompliancesOrderBy { UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', ValueAsc = 'VALUE_ASC', - ValueDesc = 'VALUE_DESC' + ValueDesc = 'VALUE_DESC', } export type TransferManager = Node & { @@ -122190,7 +121332,6 @@ export type TransferManagersConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TransferManager` values. */ export type TransferManagersConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -122217,7 +121358,7 @@ export enum TransferManagersGroupBy { Id = 'ID', Type = 'TYPE', UpdatedBlockId = 'UPDATED_BLOCK_ID', - Value = 'VALUE' + Value = 'VALUE', } export type TransferManagersHavingAverageInput = { @@ -122300,13 +121441,13 @@ export enum TransferManagersOrderBy { UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', ValueAsc = 'VALUE_ASC', - ValueDesc = 'VALUE_DESC' + ValueDesc = 'VALUE_DESC', } /** Represents all possible transfer restriction types */ export enum TransferRestrictionTypeEnum { Count = 'Count', - Percentage = 'Percentage' + Percentage = 'Percentage', } /** A filter to be used against TransferRestrictionTypeEnum fields. All fields are combined with a logical ‘and.’ */ @@ -122562,7 +121703,6 @@ export type TrustedClaimIssuersConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `TrustedClaimIssuer` values. */ export type TrustedClaimIssuersConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -122588,7 +121728,7 @@ export enum TrustedClaimIssuersGroupBy { EventIdx = 'EVENT_IDX', Id = 'ID', Issuer = 'ISSUER', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type TrustedClaimIssuersHavingAverageInput = { @@ -122669,7 +121809,7 @@ export enum TrustedClaimIssuersOrderBy { PrimaryKeyAsc = 'PRIMARY_KEY_ASC', PrimaryKeyDesc = 'PRIMARY_KEY_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type Venue = Node & { @@ -122712,7 +121852,6 @@ export type Venue = Node & { updatedBlockId: Scalars['String']['output']; }; - export type VenueAssetsByStoVenueIdAndOfferingAssetIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122725,7 +121864,6 @@ export type VenueAssetsByStoVenueIdAndOfferingAssetIdArgs = { orderBy?: InputMaybe>; }; - export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122738,7 +121876,6 @@ export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122751,7 +121888,6 @@ export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type VenueBlocksByStoVenueIdAndCreatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122764,7 +121900,6 @@ export type VenueBlocksByStoVenueIdAndCreatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type VenueBlocksByStoVenueIdAndUpdatedBlockIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122777,7 +121912,6 @@ export type VenueBlocksByStoVenueIdAndUpdatedBlockIdArgs = { orderBy?: InputMaybe>; }; - export type VenueIdentitiesByStoVenueIdAndCreatorIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122790,7 +121924,6 @@ export type VenueIdentitiesByStoVenueIdAndCreatorIdArgs = { orderBy?: InputMaybe>; }; - export type VenueInstructionsArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122803,7 +121936,6 @@ export type VenueInstructionsArgs = { orderBy?: InputMaybe>; }; - export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122816,7 +121948,6 @@ export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122829,7 +121960,6 @@ export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdArgs = { orderBy?: InputMaybe>; }; - export type VenueStosArgs = { after?: InputMaybe; before?: InputMaybe; @@ -122874,7 +122004,6 @@ export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Asset` values, with data from `Sto`. */ export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -122892,7 +122021,6 @@ export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyEdge = { stosByOfferingAssetId: StosConnection; }; - /** A `Asset` edge in the connection, with data from `Sto`. */ export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { after?: InputMaybe; @@ -122923,12 +122051,12 @@ export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Instruction`. */ -export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Instruction`. */ export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdge = { @@ -122941,19 +122069,19 @@ export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Instruction`. */ -export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdgeInstructionsByCreatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdgeInstructionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Instruction`. */ export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnection = { @@ -122972,12 +122100,12 @@ export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Instruction`. */ -export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Block` edge in the connection, with data from `Instruction`. */ export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdge = { @@ -122990,19 +122118,19 @@ export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdge = { node?: Maybe; }; - /** A `Block` edge in the connection, with data from `Instruction`. */ -export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdgeInstructionsByUpdatedBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdgeInstructionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Block` values, with data from `Sto`. */ export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnection = { @@ -123021,7 +122149,6 @@ export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -123039,7 +122166,6 @@ export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyEdge = { stosByCreatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { after?: InputMaybe; @@ -123070,7 +122196,6 @@ export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Block` values, with data from `Sto`. */ export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -123088,7 +122213,6 @@ export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyEdge = { stosByUpdatedBlockId: StosConnection; }; - /** A `Block` edge in the connection, with data from `Sto`. */ export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { after?: InputMaybe; @@ -123196,7 +122320,6 @@ export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Identity` values, with data from `Sto`. */ export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -123214,7 +122337,6 @@ export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyEdge = { stosByCreatorId: StosConnection; }; - /** A `Identity` edge in the connection, with data from `Sto`. */ export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { after?: InputMaybe; @@ -123245,12 +122367,12 @@ export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnectio totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdge = { @@ -123263,19 +122385,19 @@ export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdge = { stosByOfferingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A connection to a list of `Portfolio` values, with data from `Sto`. */ export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnection = { @@ -123294,12 +122416,12 @@ export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnection totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Portfolio` values, with data from `Sto`. */ -export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; /** A `Portfolio` edge in the connection, with data from `Sto`. */ export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdge = { @@ -123312,19 +122434,19 @@ export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdge = { stosByRaisingPortfolioId: StosConnection; }; - /** A `Portfolio` edge in the connection, with data from `Sto`. */ -export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - blockHeight?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; /** A filter to be used against many `Instruction` object types. All fields are combined with a logical ‘and.’ */ export type VenueToManyInstructionFilter = { @@ -123367,7 +122489,6 @@ export type VenuesConnection = { totalCount: Scalars['Int']['output']; }; - /** A connection to a list of `Venue` values. */ export type VenuesConnectionGroupedAggregatesArgs = { groupBy: Array; @@ -123394,7 +122515,7 @@ export enum VenuesGroupBy { OwnerId = 'OWNER_ID', Signers = 'SIGNERS', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export type VenuesHavingAverageInput = { @@ -124084,7 +123205,7 @@ export enum VenuesOrderBy { TypeAsc = 'TYPE_ASC', TypeDesc = 'TYPE_DESC', UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', - UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC' + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', } export type _Metadata = { @@ -124124,7 +123245,7 @@ export enum Account_Histories_Distinct_Enum { Id = 'ID', Identity = 'IDENTITY', Permissions = 'PERMISSIONS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Accounts_Distinct_Enum { @@ -124136,7 +123257,7 @@ export enum Accounts_Distinct_Enum { Id = 'ID', IdentityId = 'IDENTITY_ID', PermissionsId = 'PERMISSIONS_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Agent_Group_Memberships_Distinct_Enum { @@ -124145,7 +123266,7 @@ export enum Agent_Group_Memberships_Distinct_Enum { GroupId = 'GROUP_ID', Id = 'ID', Member = 'MEMBER', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Agent_Groups_Distinct_Enum { @@ -124153,7 +123274,7 @@ export enum Agent_Groups_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', Permissions = 'PERMISSIONS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Asset_Documents_Distinct_Enum { @@ -124167,7 +123288,7 @@ export enum Asset_Documents_Distinct_Enum { Link = 'LINK', Name = 'NAME', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Asset_Holders_Distinct_Enum { @@ -124177,7 +123298,7 @@ export enum Asset_Holders_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', IdentityId = 'IDENTITY_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Asset_Mandatory_Mediators_Distinct_Enum { @@ -124187,7 +123308,7 @@ export enum Asset_Mandatory_Mediators_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', IdentityId = 'IDENTITY_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Asset_Pre_Approvals_Distinct_Enum { @@ -124196,7 +123317,7 @@ export enum Asset_Pre_Approvals_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', IdentityId = 'IDENTITY_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Asset_Transactions_Distinct_Enum { @@ -124215,7 +123336,7 @@ export enum Asset_Transactions_Distinct_Enum { InstructionMemo = 'INSTRUCTION_MEMO', NftIds = 'NFT_IDS', ToPortfolioId = 'TO_PORTFOLIO_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Assets_Distinct_Enum { @@ -124236,7 +123357,7 @@ export enum Assets_Distinct_Enum { TotalSupply = 'TOTAL_SUPPLY', TotalTransfers = 'TOTAL_TRANSFERS', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Authorizations_Distinct_Enum { @@ -124250,7 +123371,7 @@ export enum Authorizations_Distinct_Enum { ToId = 'TO_ID', ToKey = 'TO_KEY', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Blocks_Distinct_Enum { @@ -124269,7 +123390,7 @@ export enum Blocks_Distinct_Enum { ParentHash = 'PARENT_HASH', ParentId = 'PARENT_ID', SpecVersionId = 'SPEC_VERSION_ID', - StateRoot = 'STATE_ROOT' + StateRoot = 'STATE_ROOT', } export enum Bridge_Events_Distinct_Enum { @@ -124282,7 +123403,7 @@ export enum Bridge_Events_Distinct_Enum { IdentityId = 'IDENTITY_ID', Recipient = 'RECIPIENT', TxHash = 'TX_HASH', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Child_Identities_Distinct_Enum { @@ -124291,7 +123412,7 @@ export enum Child_Identities_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', Id = 'ID', ParentId = 'PARENT_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Claim_Scopes_Distinct_Enum { @@ -124301,7 +123422,7 @@ export enum Claim_Scopes_Distinct_Enum { Id = 'ID', Scope = 'SCOPE', Target = 'TARGET', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Claims_Distinct_Enum { @@ -124321,7 +123442,7 @@ export enum Claims_Distinct_Enum { Scope = 'SCOPE', TargetId = 'TARGET_ID', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Compliances_Distinct_Enum { @@ -124331,7 +123452,7 @@ export enum Compliances_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', Data = 'DATA', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Accounts_Distinct_Enum { @@ -124342,7 +123463,7 @@ export enum Confidential_Accounts_Distinct_Enum { EventIdx = 'EVENT_IDX', FrozenForAsset = 'FROZEN_FOR_ASSET', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Asset_Histories_Distinct_Enum { @@ -124359,7 +123480,7 @@ export enum Confidential_Asset_Histories_Distinct_Enum { Memo = 'MEMO', ToId = 'TO_ID', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Asset_Holders_Distinct_Enum { @@ -124370,7 +123491,7 @@ export enum Confidential_Asset_Holders_Distinct_Enum { CreatedBlockId = 'CREATED_BLOCK_ID', EventIdx = 'EVENT_IDX', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Asset_Movements_Distinct_Enum { @@ -124381,7 +123502,7 @@ export enum Confidential_Asset_Movements_Distinct_Enum { Id = 'ID', Proof = 'PROOF', ToId = 'TO_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Assets_Distinct_Enum { @@ -124399,7 +123520,7 @@ export enum Confidential_Assets_Distinct_Enum { Ticker = 'TICKER', TotalSupply = 'TOTAL_SUPPLY', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueFiltering = 'VENUE_FILTERING' + VenueFiltering = 'VENUE_FILTERING', } export enum Confidential_Legs_Distinct_Enum { @@ -124411,7 +123532,7 @@ export enum Confidential_Legs_Distinct_Enum { ReceiverId = 'RECEIVER_ID', SenderId = 'SENDER_ID', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Transaction_Affirmations_Distinct_Enum { @@ -124426,7 +123547,7 @@ export enum Confidential_Transaction_Affirmations_Distinct_Enum { Proofs = 'PROOFS', Status = 'STATUS', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Confidential_Transactions_Distinct_Enum { @@ -124439,7 +123560,7 @@ export enum Confidential_Transactions_Distinct_Enum { PendingAffirmations = 'PENDING_AFFIRMATIONS', Status = 'STATUS', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export enum Confidential_Venues_Distinct_Enum { @@ -124449,7 +123570,7 @@ export enum Confidential_Venues_Distinct_Enum { EventIdx = 'EVENT_IDX', Id = 'ID', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export enum Custom_Claim_Types_Distinct_Enum { @@ -124458,14 +123579,14 @@ export enum Custom_Claim_Types_Distinct_Enum { Id = 'ID', IdentityId = 'IDENTITY_ID', Name = 'NAME', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Debugs_Distinct_Enum { Context = 'CONTEXT', CreatedAt = 'CREATED_AT', Id = 'ID', - Line = 'LINE' + Line = 'LINE', } export enum Distribution_Payments_Distinct_Enum { @@ -124480,7 +123601,7 @@ export enum Distribution_Payments_Distinct_Enum { Reclaimed = 'RECLAIMED', TargetId = 'TARGET_ID', Tax = 'TAX', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Distributions_Distinct_Enum { @@ -124498,7 +123619,7 @@ export enum Distributions_Distinct_Enum { PortfolioId = 'PORTFOLIO_ID', Remaining = 'REMAINING', Taxes = 'TAXES', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Events_Distinct_Enum { @@ -124523,7 +123644,7 @@ export enum Events_Distinct_Enum { Id = 'ID', ModuleId = 'MODULE_ID', SpecVersionId = 'SPEC_VERSION_ID', - TransferTo = 'TRANSFER_TO' + TransferTo = 'TRANSFER_TO', } export enum Extrinsics_Distinct_Enum { @@ -124542,13 +123663,13 @@ export enum Extrinsics_Distinct_Enum { Signed = 'SIGNED', SignedbyAddress = 'SIGNEDBY_ADDRESS', SpecVersionId = 'SPEC_VERSION_ID', - Success = 'SUCCESS' + Success = 'SUCCESS', } export enum Found_Types_Distinct_Enum { CreatedAt = 'CREATED_AT', Id = 'ID', - RawType = 'RAW_TYPE' + RawType = 'RAW_TYPE', } export enum Fundings_Distinct_Enum { @@ -124560,7 +123681,7 @@ export enum Fundings_Distinct_Enum { FundingRound = 'FUNDING_ROUND', Id = 'ID', TotalFundingAmount = 'TOTAL_FUNDING_AMOUNT', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Identities_Distinct_Enum { @@ -124572,7 +123693,7 @@ export enum Identities_Distinct_Enum { Id = 'ID', PrimaryAccount = 'PRIMARY_ACCOUNT', SecondaryKeysFrozen = 'SECONDARY_KEYS_FROZEN', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Instruction_Affirmations_Distinct_Enum { @@ -124588,7 +123709,7 @@ export enum Instruction_Affirmations_Distinct_Enum { PartyId = 'PARTY_ID', Portfolios = 'PORTFOLIOS', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Instruction_Events_Distinct_Enum { @@ -124602,7 +123723,7 @@ export enum Instruction_Events_Distinct_Enum { InstructionId = 'INSTRUCTION_ID', OffChainReceiptId = 'OFF_CHAIN_RECEIPT_ID', Portfolio = 'PORTFOLIO', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Instruction_Parties_Distinct_Enum { @@ -124613,7 +123734,7 @@ export enum Instruction_Parties_Distinct_Enum { InstructionId = 'INSTRUCTION_ID', IsMediator = 'IS_MEDIATOR', Portfolios = 'PORTFOLIOS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Instructions_Distinct_Enum { @@ -124630,7 +123751,7 @@ export enum Instructions_Distinct_Enum { Type = 'TYPE', UpdatedBlockId = 'UPDATED_BLOCK_ID', ValueDate = 'VALUE_DATE', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export enum Investments_Distinct_Enum { @@ -124646,7 +123767,7 @@ export enum Investments_Distinct_Enum { RaiseTokenAmount = 'RAISE_TOKEN_AMOUNT', RaisingAssetId = 'RAISING_ASSET_ID', StoId = 'STO_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Legs_Distinct_Enum { @@ -124665,7 +123786,7 @@ export enum Legs_Distinct_Enum { Ticker = 'TICKER', To = 'TO', ToPortfolio = 'TO_PORTFOLIO', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Migrations_Distinct_Enum { @@ -124674,7 +123795,7 @@ export enum Migrations_Distinct_Enum { Id = 'ID', Number = 'NUMBER', ProcessedBlock = 'PROCESSED_BLOCK', - Version = 'VERSION' + Version = 'VERSION', } export enum Multi_Sig_Admins_Distinct_Enum { @@ -124684,7 +123805,7 @@ export enum Multi_Sig_Admins_Distinct_Enum { IdentityId = 'IDENTITY_ID', MultisigId = 'MULTISIG_ID', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Multi_Sig_Proposal_Votes_Distinct_Enum { @@ -124697,7 +123818,7 @@ export enum Multi_Sig_Proposal_Votes_Distinct_Enum { Id = 'ID', ProposalId = 'PROPOSAL_ID', SignerId = 'SIGNER_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Multi_Sig_Proposals_Distinct_Enum { @@ -124715,7 +123836,7 @@ export enum Multi_Sig_Proposals_Distinct_Enum { ProposalId = 'PROPOSAL_ID', RejectionCount = 'REJECTION_COUNT', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Multi_Sig_Signers_Distinct_Enum { @@ -124726,7 +123847,7 @@ export enum Multi_Sig_Signers_Distinct_Enum { SignerType = 'SIGNER_TYPE', SignerValue = 'SIGNER_VALUE', Status = 'STATUS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Multi_Sigs_Distinct_Enum { @@ -124737,7 +123858,7 @@ export enum Multi_Sigs_Distinct_Enum { CreatorId = 'CREATOR_ID', Id = 'ID', SignaturesRequired = 'SIGNATURES_REQUIRED', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Nft_Holders_Distinct_Enum { @@ -124747,7 +123868,7 @@ export enum Nft_Holders_Distinct_Enum { Id = 'ID', IdentityId = 'IDENTITY_ID', NftIds = 'NFT_IDS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Off_Chain_Receipts_Distinct_Enum { @@ -124758,7 +123879,7 @@ export enum Off_Chain_Receipts_Distinct_Enum { Metadata = 'METADATA', Signer = 'SIGNER', Uid = 'UID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Permissions_Distinct_Enum { @@ -124770,7 +123891,7 @@ export enum Permissions_Distinct_Enum { Portfolios = 'PORTFOLIOS', Transactions = 'TRANSACTIONS', TransactionGroups = 'TRANSACTION_GROUPS', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Polyx_Transactions_Distinct_Enum { @@ -124790,7 +123911,7 @@ export enum Polyx_Transactions_Distinct_Enum { ToAddress = 'TO_ADDRESS', ToId = 'TO_ID', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Portfolio_Movements_Distinct_Enum { @@ -124805,7 +123926,7 @@ export enum Portfolio_Movements_Distinct_Enum { NftIds = 'NFT_IDS', ToId = 'TO_ID', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Portfolios_Distinct_Enum { @@ -124818,7 +123939,7 @@ export enum Portfolios_Distinct_Enum { IdentityId = 'IDENTITY_ID', Name = 'NAME', Number = 'NUMBER', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Proposal_Votes_Distinct_Enum { @@ -124829,7 +123950,7 @@ export enum Proposal_Votes_Distinct_Enum { ProposalId = 'PROPOSAL_ID', UpdatedBlockId = 'UPDATED_BLOCK_ID', Vote = 'VOTE', - Weight = 'WEIGHT' + Weight = 'WEIGHT', } export enum Proposals_Distinct_Enum { @@ -124845,7 +123966,7 @@ export enum Proposals_Distinct_Enum { TotalAyeWeight = 'TOTAL_AYE_WEIGHT', TotalNayWeight = 'TOTAL_NAY_WEIGHT', UpdatedBlockId = 'UPDATED_BLOCK_ID', - Url = 'URL' + Url = 'URL', } export enum Staking_Events_Distinct_Enum { @@ -124859,7 +123980,7 @@ export enum Staking_Events_Distinct_Enum { NominatedValidators = 'NOMINATED_VALIDATORS', StashAccount = 'STASH_ACCOUNT', TransactionId = 'TRANSACTION_ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Stat_Types_Distinct_Enum { @@ -124871,7 +123992,7 @@ export enum Stat_Types_Distinct_Enum { CustomClaimTypeId = 'CUSTOM_CLAIM_TYPE_ID', Id = 'ID', OpType = 'OP_TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Stos_Distinct_Enum { @@ -124892,14 +124013,14 @@ export enum Stos_Distinct_Enum { StoId = 'STO_ID', Tiers = 'TIERS', UpdatedBlockId = 'UPDATED_BLOCK_ID', - VenueId = 'VENUE_ID' + VenueId = 'VENUE_ID', } export enum Subquery_Versions_Distinct_Enum { CreatedAt = 'CREATED_AT', Id = 'ID', UpdatedAt = 'UPDATED_AT', - Version = 'VERSION' + Version = 'VERSION', } export enum Ticker_External_Agent_Actions_Distinct_Enum { @@ -124911,7 +124032,7 @@ export enum Ticker_External_Agent_Actions_Distinct_Enum { EventIdx = 'EVENT_IDX', Id = 'ID', PalletName = 'PALLET_NAME', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Ticker_External_Agent_Histories_Distinct_Enum { @@ -124924,7 +124045,7 @@ export enum Ticker_External_Agent_Histories_Distinct_Enum { IdentityId = 'IDENTITY_ID', Permissions = 'PERMISSIONS', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Ticker_External_Agents_Distinct_Enum { @@ -124935,7 +124056,7 @@ export enum Ticker_External_Agents_Distinct_Enum { Datetime = 'DATETIME', EventIdx = 'EVENT_IDX', Id = 'ID', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Transfer_Compliance_Exemptions_Distinct_Enum { @@ -124946,7 +124067,7 @@ export enum Transfer_Compliance_Exemptions_Distinct_Enum { ExemptedEntityId = 'EXEMPTED_ENTITY_ID', Id = 'ID', OpType = 'OP_TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Transfer_Compliances_Distinct_Enum { @@ -124962,7 +124083,7 @@ export enum Transfer_Compliances_Distinct_Enum { StatTypeId = 'STAT_TYPE_ID', Type = 'TYPE', UpdatedBlockId = 'UPDATED_BLOCK_ID', - Value = 'VALUE' + Value = 'VALUE', } export enum Transfer_Managers_Distinct_Enum { @@ -124973,7 +124094,7 @@ export enum Transfer_Managers_Distinct_Enum { Id = 'ID', Type = 'TYPE', UpdatedBlockId = 'UPDATED_BLOCK_ID', - Value = 'VALUE' + Value = 'VALUE', } export enum Trusted_Claim_Issuers_Distinct_Enum { @@ -124983,7 +124104,7 @@ export enum Trusted_Claim_Issuers_Distinct_Enum { EventIdx = 'EVENT_IDX', Id = 'ID', Issuer = 'ISSUER', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', } export enum Venues_Distinct_Enum { @@ -124994,5 +124115,5 @@ export enum Venues_Distinct_Enum { OwnerId = 'OWNER_ID', Signers = 'SIGNERS', Type = 'TYPE', - UpdatedBlockId = 'UPDATED_BLOCK_ID' + UpdatedBlockId = 'UPDATED_BLOCK_ID', }