From f3d5a5e758a47ee149dde2b39e1bc07e0336f765 Mon Sep 17 00:00:00 2001 From: Pavan Soratur Date: Thu, 27 Apr 2023 13:38:58 -0700 Subject: [PATCH] Show proposer details in proposal details drawer (#1149) Co-authored-by: Dustin Brickwood --- .github/workflows/check-build.yml | 11 +- .github/workflows/deploy-stats-dapp-dev.yml | 2 +- .gitignore | 3 +- .graphqlconfig | 10 - apps/stats-dapp/.gitignore | 2 + apps/stats-dapp/.graphqlconfig | 10 + apps/stats-dapp/codegen.yml | 20 + .../ProposalsTable/ProposalsTable.tsx | 5 +- .../ProposersTable/ProposersTable.tsx | 23 +- apps/stats-dapp/src/generated/graphql.tsx | 15716 --- apps/stats-dapp/src/gql/proposals.graphql | 38 +- .../src/provider/hooks/mappers/index.ts | 4 +- .../src/provider/hooks/useProposals.ts | 83 +- .../src/utils/getChipColorByProposalType.ts | 2 +- apps/stats-dapp/src/utils/getProposalsData.ts | 2 +- codegen.yml | 27 - graphql.schema.json | 81112 ---------------- package.json | 6 +- schema.graphql | 12311 --- 19 files changed, 154 insertions(+), 109233 deletions(-) delete mode 100644 .graphqlconfig create mode 100644 apps/stats-dapp/.graphqlconfig create mode 100644 apps/stats-dapp/codegen.yml delete mode 100644 apps/stats-dapp/src/generated/graphql.tsx delete mode 100644 codegen.yml delete mode 100644 graphql.schema.json delete mode 100644 schema.graphql diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml index 9728af6810..89c01b68a1 100644 --- a/.github/workflows/check-build.yml +++ b/.github/workflows/check-build.yml @@ -40,7 +40,12 @@ jobs: echo NEXT_PUBLIC_FAUCET_BACKEND_URL=${{ secrets.NEXT_PUBLIC_FAUCET_BACKEND_URL }} >> .env echo NEXT_PUBLIC_TWITTER_CLIENT_ID=${{ secrets.NEXT_PUBLIC_TWITTER_CLIENT_ID }} >> .env echo TWITTER_CLIENT_SECRET=${{ secrets.TWITTER_CLIENT_SECRET }} >> .env + + - name: Install deps + run: yarn install + + - name: Generate stats-dapp codegen + run: yarn gql:codegen + - name: build - run: | - yarn install - yarn nx run-many --all --target=build + run: yarn nx run-many --all --target=build diff --git a/.github/workflows/deploy-stats-dapp-dev.yml b/.github/workflows/deploy-stats-dapp-dev.yml index 894f7e99c8..dae964b06a 100644 --- a/.github/workflows/deploy-stats-dapp-dev.yml +++ b/.github/workflows/deploy-stats-dapp-dev.yml @@ -34,7 +34,7 @@ jobs: run: yarn install - name: Build project - run: yarn nx build stats-dapp + run: yarn build:stats - name: Deploy to Netlify id: deploy-netlify diff --git a/.gitignore b/.gitignore index 6ab377d3ea..99b5aa1f0b 100644 --- a/.gitignore +++ b/.gitignore @@ -88,4 +88,5 @@ tmp /tools/scripts/local-webb-dapp /tools/scripts/protocol-solidity/ /tools/scripts/relayer/ -/tools/scripts/webb-dapp/ \ No newline at end of file +/tools/scripts/webb-dapp/ +apps/stats-dapp/graphql.schema.json \ No newline at end of file diff --git a/.graphqlconfig b/.graphqlconfig deleted file mode 100644 index 31bc73d2df..0000000000 --- a/.graphqlconfig +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extensions": { - "endpoints": { - "url": "https://subquery-dev.webb.tools/graphql", - "subscription": "https://subquery-dev.webb.tools/graphql" - }, - "schemaPath": "./schema.graphql" - } -} - diff --git a/apps/stats-dapp/.gitignore b/apps/stats-dapp/.gitignore index 567609b123..991bcf2a66 100644 --- a/apps/stats-dapp/.gitignore +++ b/apps/stats-dapp/.gitignore @@ -1 +1,3 @@ build/ +src/generated/ +./graphql.schema.json \ No newline at end of file diff --git a/apps/stats-dapp/.graphqlconfig b/apps/stats-dapp/.graphqlconfig new file mode 100644 index 0000000000..cc534533cc --- /dev/null +++ b/apps/stats-dapp/.graphqlconfig @@ -0,0 +1,10 @@ +{ + "extensions": { + "endpoints": { + "url": "https://standalone-subql.webb.tools/graphql", + "subscription": "https://standalone-subql.webb.tools/graphql" + }, + "schemaPath": "./schema.graphql" + } +} + diff --git a/apps/stats-dapp/codegen.yml b/apps/stats-dapp/codegen.yml new file mode 100644 index 0000000000..e9eb1d527a --- /dev/null +++ b/apps/stats-dapp/codegen.yml @@ -0,0 +1,20 @@ +overwrite: true +schema: "https://standalone-subql.webb.tools/graphql" +documents: + - "apps/stats-dapp/src/**/*.graphql" +generates: + apps/stats-dapp/src/generated/graphql.tsx: + plugins: + - "typescript" + - "typescript-operations" + - "typescript-react-apollo" + + apps/stats-dapp/graphql.schema.json: + plugins: + - "introspection" + config: + withComponent: true + withHooks: true + withMutationFn: true + withRefetchFn: true + skipTypename: true diff --git a/apps/stats-dapp/src/containers/ProposalsTable/ProposalsTable.tsx b/apps/stats-dapp/src/containers/ProposalsTable/ProposalsTable.tsx index cc7dfc681b..45271aca6c 100644 --- a/apps/stats-dapp/src/containers/ProposalsTable/ProposalsTable.tsx +++ b/apps/stats-dapp/src/containers/ProposalsTable/ProposalsTable.tsx @@ -8,10 +8,7 @@ import { useReactTable, } from '@tanstack/react-table'; import { ChainConfig, chainsConfig } from '@webb-tools/dapp-config'; -import { - AppEnum155D64Ff70 as ProposalStatus, - AppEnumB6165934C8 as ProposalType, -} from '../../generated/graphql'; +import { ProposalStatus, ProposalType } from '../../generated/graphql'; import { ProposalListItem, ProposalsQuery, diff --git a/apps/stats-dapp/src/containers/ProposersTable/ProposersTable.tsx b/apps/stats-dapp/src/containers/ProposersTable/ProposersTable.tsx index 24cd3d673a..c01583df4a 100644 --- a/apps/stats-dapp/src/containers/ProposersTable/ProposersTable.tsx +++ b/apps/stats-dapp/src/containers/ProposersTable/ProposersTable.tsx @@ -11,7 +11,7 @@ import { Table as RTTable, useReactTable, } from '@tanstack/react-table'; -import { AppEnumFe385C7221 as VoteStatus } from '../../generated/graphql'; +import { VoteType } from '../../generated/graphql'; import { useVotes, VoteListItem, VotesQuery } from '../../provider/hooks'; import { Avatar, @@ -42,13 +42,13 @@ const columns: ColumnDef[] = [ columnHelper.accessor('status', { header: 'Vote', cell: (props) => { - const vote = props.getValue(); + const vote = props.getValue(); switch (vote) { - case VoteStatus.Abstain: + case VoteType.Abstain: return Abstain; - case VoteStatus.Against: + case VoteType.Against: return Against; - case VoteStatus.For: + case VoteType.For: return For; default: return '-'; @@ -81,9 +81,7 @@ export const ProposersTable: FC = ({ pageIndex: 0, pageSize: 10, }); - const [voteStatus, setVoteStatus] = useState( - undefined - ); + const [voteStatus, setVoteStatus] = useState(undefined); const query = useMemo(() => { return { filter: { @@ -94,14 +92,15 @@ export const ProposersTable: FC = ({ perPage: pagination.pageSize, }; }, [pagination, proposalId, voteStatus]); + const votes = useVotes(query); - const tabsValue = useMemo>(() => { + const tabsValue = useMemo>(() => { return [ [undefined, `All (${counters.all})`], - [VoteStatus.For, `For (${counters.for})`], - [VoteStatus.Against, `Against (${counters.against})`], - [VoteStatus.Abstain, `Abstain (${counters.abstain})`], + [VoteType.For, `For (${counters.for})`], + [VoteType.Against, `Against (${counters.against})`], + [VoteType.Abstain, `Abstain (${counters.abstain})`], ]; }, [counters]); diff --git a/apps/stats-dapp/src/generated/graphql.tsx b/apps/stats-dapp/src/generated/graphql.tsx deleted file mode 100644 index 76b56c2b2f..0000000000 --- a/apps/stats-dapp/src/generated/graphql.tsx +++ /dev/null @@ -1,15716 +0,0 @@ -import { gql } from '@apollo/client'; -import * as Apollo from '@apollo/client'; -export type Maybe = T | null; -export type InputMaybe = Maybe; -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; -}; -const defaultOptions = {} as const; -/** All built-in and custom scalars, mapped to their actual values */ -export type Scalars = { - ID: string; - String: string; - Boolean: boolean; - Int: number; - Float: number; - BigFloat: any; - BigInt: any; - Cursor: any; - Date: any; - Datetime: any; - JSON: any; -}; - -export type Account = Node & { - __typename?: 'Account'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByCreatorId: AccountsConnection; - /** Reads and enables pagination through a set of `Block`. */ - blocksByAccountCreatorIdAndCreateAtBlockId: AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection; - /** Reads and enables pagination through a set of `Block`. */ - blocksByExtrinsicSignerIdAndBlockId: AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection; - /** Reads a single `CountryCode` that is related to this `Account`. */ - countryCode?: Maybe; - countryCodeId?: Maybe; - /** Reads and enables pagination through a set of `CountryCode`. */ - countryCodesByAccountCreatorIdAndCountryCodeId: AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection; - /** Reads a single `Block` that is related to this `Account`. */ - createAtBlock?: Maybe; - createAtBlockId?: Maybe; - createdAt?: Maybe; - /** Reads a single `Account` that is related to this `Account`. */ - creator?: Maybe; - creatorId?: Maybe; - display?: Maybe; - email?: Maybe; - /** Reads and enables pagination through a set of `Extrinsic`. */ - extrinsics: ExtrinsicsConnection; - /** Reads and enables pagination through a set of `HeartBeat`. */ - heartBeats: HeartBeatsConnection; - id: Scalars['String']; - image?: Maybe; - legal?: Maybe; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - pgpFingerprint?: Maybe; - /** Reads and enables pagination through a set of `Proposer`. */ - proposers: ProposersConnection; - riot?: Maybe; - /** Reads and enables pagination through a set of `Session`. */ - sessionsByHeartBeatAccountIdAndSessionId: AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection; - twitter?: Maybe; - /** Reads and enables pagination through a set of `Validator`. */ - validators: ValidatorsConnection; - web?: Maybe; -}; - -export type AccountAccountsByCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountBlocksByExtrinsicSignerIdAndBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountExtrinsicsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountHeartBeatsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountProposersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountSessionsByHeartBeatAccountIdAndSessionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountValidatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type AccountAggregates = { - __typename?: 'AccountAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -/** A connection to a list of `Block` values, with data from `Account`. */ -export type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection = - { - __typename?: 'AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `Account`, and the 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']; - }; - -/** A connection to a list of `Block` values, with data from `Account`. */ -export type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `Account`. */ -export type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdge = { - __typename?: 'AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByCreateAtBlockId: AccountsConnection; - /** 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 `Account`. */ -export type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdgeAccountsByCreateAtBlockIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `Block` values, with data from `Extrinsic`. */ -export type AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection = { - __typename?: 'AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `Extrinsic`, and the 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']; -}; - -/** A connection to a list of `Block` values, with data from `Extrinsic`. */ -export type AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `Extrinsic`. */ -export type AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdge = { - __typename?: 'AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `Extrinsic`. */ - extrinsics: ExtrinsicsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Block` edge in the connection, with data from `Extrinsic`. */ -export type AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdgeExtrinsicsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `CountryCode` values, with data from `Account`. */ -export type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection = - { - __typename?: 'AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `CountryCode`, info from the `Account`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `CountryCode` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `CountryCode` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `CountryCode` values, with data from `Account`. */ -export type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `CountryCode` edge in the connection, with data from `Account`. */ -export type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdge = - { - __typename?: 'AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdge'; - /** Reads and enables pagination through a set of `Account`. */ - accounts: AccountsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `CountryCode` at the end of the edge. */ - node?: Maybe; - }; - -/** A `CountryCode` edge in the connection, with data from `Account`. */ -export type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdgeAccountsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type AccountDistinctCountAggregates = { - __typename?: 'AccountDistinctCountAggregates'; - /** Distinct count of countryCodeId across the matching connection */ - countryCodeId?: Maybe; - /** Distinct count of createAtBlockId across the matching connection */ - createAtBlockId?: Maybe; - /** Distinct count of createdAt across the matching connection */ - createdAt?: Maybe; - /** Distinct count of creatorId across the matching connection */ - creatorId?: Maybe; - /** Distinct count of display across the matching connection */ - display?: Maybe; - /** Distinct count of email across the matching connection */ - email?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of image across the matching connection */ - image?: Maybe; - /** Distinct count of legal across the matching connection */ - legal?: Maybe; - /** Distinct count of pgpFingerprint across the matching connection */ - pgpFingerprint?: Maybe; - /** Distinct count of riot across the matching connection */ - riot?: Maybe; - /** Distinct count of twitter across the matching connection */ - twitter?: Maybe; - /** Distinct count of web across the matching connection */ - web?: Maybe; -}; - -/** A filter to be used against `Account` object types. All fields are combined with a logical ‘and.’ */ -export type AccountFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `countryCodeId` field. */ - countryCodeId?: InputMaybe; - /** Filter by the object’s `createAtBlockId` field. */ - createAtBlockId?: InputMaybe; - /** Filter by the object’s `createdAt` field. */ - createdAt?: InputMaybe; - /** Filter by the object’s `creatorId` field. */ - creatorId?: InputMaybe; - /** Filter by the object’s `display` field. */ - display?: InputMaybe; - /** Filter by the object’s `email` field. */ - email?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `image` field. */ - image?: InputMaybe; - /** Filter by the object’s `legal` field. */ - legal?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `pgpFingerprint` field. */ - pgpFingerprint?: InputMaybe; - /** Filter by the object’s `riot` field. */ - riot?: InputMaybe; - /** Filter by the object’s `twitter` field. */ - twitter?: InputMaybe; - /** Filter by the object’s `web` field. */ - web?: InputMaybe; -}; - -/** A connection to a list of `Session` values, with data from `HeartBeat`. */ -export type AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection = - { - __typename?: 'AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Session`, info from the `HeartBeat`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Session` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Session` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Session` values, with data from `HeartBeat`. */ -export type AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Session` edge in the connection, with data from `HeartBeat`. */ -export type AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdge = { - __typename?: 'AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `HeartBeat`. */ - heartBeats: HeartBeatsConnection; - /** The `Session` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Session` edge in the connection, with data from `HeartBeat`. */ -export type AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdgeHeartBeatsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `Account` values. */ -export type AccountsConnection = { - __typename?: 'AccountsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Account` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Account` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Account` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Account` values. */ -export type AccountsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Account` edge in the connection. */ -export type AccountsEdge = { - __typename?: 'AccountsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Account` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Account` for usage during aggregation. */ -export enum AccountsGroupBy { - CountryCodeId = 'COUNTRY_CODE_ID', - CreatedAt = 'CREATED_AT', - CreateAtBlockId = 'CREATE_AT_BLOCK_ID', - CreatorId = 'CREATOR_ID', - Display = 'DISPLAY', - Email = 'EMAIL', - Image = 'IMAGE', - Legal = 'LEGAL', - PgpFingerprint = 'PGP_FINGERPRINT', - Riot = 'RIOT', - Twitter = 'TWITTER', - Web = 'WEB', -} - -/** Conditions for `Account` aggregates. */ -export type AccountsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `Account`. */ -export enum AccountsOrderBy { - AccountsByCreatorIdAverageCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdAverageCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdAverageCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', - AccountsByCreatorIdAverageCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', - AccountsByCreatorIdAverageCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdAverageCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdAverageCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', - AccountsByCreatorIdAverageCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', - AccountsByCreatorIdAverageDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_DISPLAY_ASC', - AccountsByCreatorIdAverageDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_DISPLAY_DESC', - AccountsByCreatorIdAverageEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_EMAIL_ASC', - AccountsByCreatorIdAverageEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_EMAIL_DESC', - AccountsByCreatorIdAverageIdAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_ASC', - AccountsByCreatorIdAverageIdDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_DESC', - AccountsByCreatorIdAverageImageAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_IMAGE_ASC', - AccountsByCreatorIdAverageImageDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_IMAGE_DESC', - AccountsByCreatorIdAverageLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_LEGAL_ASC', - AccountsByCreatorIdAverageLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_LEGAL_DESC', - AccountsByCreatorIdAveragePgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdAveragePgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdAverageRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_RIOT_ASC', - AccountsByCreatorIdAverageRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_RIOT_DESC', - AccountsByCreatorIdAverageTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_TWITTER_ASC', - AccountsByCreatorIdAverageTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_TWITTER_DESC', - AccountsByCreatorIdAverageWebAsc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_WEB_ASC', - AccountsByCreatorIdAverageWebDesc = 'ACCOUNTS_BY_CREATOR_ID_AVERAGE_WEB_DESC', - AccountsByCreatorIdCountAsc = 'ACCOUNTS_BY_CREATOR_ID_COUNT_ASC', - AccountsByCreatorIdCountDesc = 'ACCOUNTS_BY_CREATOR_ID_COUNT_DESC', - AccountsByCreatorIdDistinctCountCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdDistinctCountCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdDistinctCountCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', - AccountsByCreatorIdDistinctCountCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', - AccountsByCreatorIdDistinctCountCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdDistinctCountCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdDistinctCountCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', - AccountsByCreatorIdDistinctCountCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', - AccountsByCreatorIdDistinctCountDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_DISPLAY_ASC', - AccountsByCreatorIdDistinctCountDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_DISPLAY_DESC', - AccountsByCreatorIdDistinctCountEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EMAIL_ASC', - AccountsByCreatorIdDistinctCountEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EMAIL_DESC', - AccountsByCreatorIdDistinctCountIdAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', - AccountsByCreatorIdDistinctCountIdDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', - AccountsByCreatorIdDistinctCountImageAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_IMAGE_ASC', - AccountsByCreatorIdDistinctCountImageDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_IMAGE_DESC', - AccountsByCreatorIdDistinctCountLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_LEGAL_ASC', - AccountsByCreatorIdDistinctCountLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_LEGAL_DESC', - AccountsByCreatorIdDistinctCountPgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdDistinctCountPgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdDistinctCountRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_RIOT_ASC', - AccountsByCreatorIdDistinctCountRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_RIOT_DESC', - AccountsByCreatorIdDistinctCountTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_TWITTER_ASC', - AccountsByCreatorIdDistinctCountTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_TWITTER_DESC', - AccountsByCreatorIdDistinctCountWebAsc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_WEB_ASC', - AccountsByCreatorIdDistinctCountWebDesc = 'ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_WEB_DESC', - AccountsByCreatorIdMaxCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdMaxCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdMaxCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_ASC', - AccountsByCreatorIdMaxCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_DESC', - AccountsByCreatorIdMaxCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdMaxCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdMaxCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', - AccountsByCreatorIdMaxCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', - AccountsByCreatorIdMaxDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_DISPLAY_ASC', - AccountsByCreatorIdMaxDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_DISPLAY_DESC', - AccountsByCreatorIdMaxEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_EMAIL_ASC', - AccountsByCreatorIdMaxEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_EMAIL_DESC', - AccountsByCreatorIdMaxIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_ID_ASC', - AccountsByCreatorIdMaxIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_ID_DESC', - AccountsByCreatorIdMaxImageAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_IMAGE_ASC', - AccountsByCreatorIdMaxImageDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_IMAGE_DESC', - AccountsByCreatorIdMaxLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_LEGAL_ASC', - AccountsByCreatorIdMaxLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_LEGAL_DESC', - AccountsByCreatorIdMaxPgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdMaxPgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdMaxRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_RIOT_ASC', - AccountsByCreatorIdMaxRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_RIOT_DESC', - AccountsByCreatorIdMaxTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_TWITTER_ASC', - AccountsByCreatorIdMaxTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_TWITTER_DESC', - AccountsByCreatorIdMaxWebAsc = 'ACCOUNTS_BY_CREATOR_ID_MAX_WEB_ASC', - AccountsByCreatorIdMaxWebDesc = 'ACCOUNTS_BY_CREATOR_ID_MAX_WEB_DESC', - AccountsByCreatorIdMinCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdMinCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdMinCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_ASC', - AccountsByCreatorIdMinCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_DESC', - AccountsByCreatorIdMinCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdMinCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdMinCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', - AccountsByCreatorIdMinCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', - AccountsByCreatorIdMinDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_DISPLAY_ASC', - AccountsByCreatorIdMinDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_DISPLAY_DESC', - AccountsByCreatorIdMinEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_EMAIL_ASC', - AccountsByCreatorIdMinEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_EMAIL_DESC', - AccountsByCreatorIdMinIdAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_ID_ASC', - AccountsByCreatorIdMinIdDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_ID_DESC', - AccountsByCreatorIdMinImageAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_IMAGE_ASC', - AccountsByCreatorIdMinImageDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_IMAGE_DESC', - AccountsByCreatorIdMinLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_LEGAL_ASC', - AccountsByCreatorIdMinLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_LEGAL_DESC', - AccountsByCreatorIdMinPgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdMinPgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdMinRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_RIOT_ASC', - AccountsByCreatorIdMinRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_RIOT_DESC', - AccountsByCreatorIdMinTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_TWITTER_ASC', - AccountsByCreatorIdMinTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_TWITTER_DESC', - AccountsByCreatorIdMinWebAsc = 'ACCOUNTS_BY_CREATOR_ID_MIN_WEB_ASC', - AccountsByCreatorIdMinWebDesc = 'ACCOUNTS_BY_CREATOR_ID_MIN_WEB_DESC', - AccountsByCreatorIdStddevPopulationCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdStddevPopulationCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdStddevPopulationCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', - AccountsByCreatorIdStddevPopulationCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', - AccountsByCreatorIdStddevPopulationCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdStddevPopulationCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdStddevPopulationCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', - AccountsByCreatorIdStddevPopulationCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', - AccountsByCreatorIdStddevPopulationDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_DISPLAY_ASC', - AccountsByCreatorIdStddevPopulationDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_DISPLAY_DESC', - AccountsByCreatorIdStddevPopulationEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EMAIL_ASC', - AccountsByCreatorIdStddevPopulationEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EMAIL_DESC', - AccountsByCreatorIdStddevPopulationIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', - AccountsByCreatorIdStddevPopulationIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', - AccountsByCreatorIdStddevPopulationImageAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_IMAGE_ASC', - AccountsByCreatorIdStddevPopulationImageDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_IMAGE_DESC', - AccountsByCreatorIdStddevPopulationLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_LEGAL_ASC', - AccountsByCreatorIdStddevPopulationLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_LEGAL_DESC', - AccountsByCreatorIdStddevPopulationPgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdStddevPopulationPgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdStddevPopulationRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_RIOT_ASC', - AccountsByCreatorIdStddevPopulationRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_RIOT_DESC', - AccountsByCreatorIdStddevPopulationTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_TWITTER_ASC', - AccountsByCreatorIdStddevPopulationTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_TWITTER_DESC', - AccountsByCreatorIdStddevPopulationWebAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_WEB_ASC', - AccountsByCreatorIdStddevPopulationWebDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_WEB_DESC', - AccountsByCreatorIdStddevSampleCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdStddevSampleCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdStddevSampleCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', - AccountsByCreatorIdStddevSampleCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', - AccountsByCreatorIdStddevSampleCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdStddevSampleCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdStddevSampleCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', - AccountsByCreatorIdStddevSampleCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', - AccountsByCreatorIdStddevSampleDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_DISPLAY_ASC', - AccountsByCreatorIdStddevSampleDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_DISPLAY_DESC', - AccountsByCreatorIdStddevSampleEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EMAIL_ASC', - AccountsByCreatorIdStddevSampleEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EMAIL_DESC', - AccountsByCreatorIdStddevSampleIdAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', - AccountsByCreatorIdStddevSampleIdDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', - AccountsByCreatorIdStddevSampleImageAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_IMAGE_ASC', - AccountsByCreatorIdStddevSampleImageDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_IMAGE_DESC', - AccountsByCreatorIdStddevSampleLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_LEGAL_ASC', - AccountsByCreatorIdStddevSampleLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_LEGAL_DESC', - AccountsByCreatorIdStddevSamplePgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdStddevSamplePgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdStddevSampleRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_RIOT_ASC', - AccountsByCreatorIdStddevSampleRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_RIOT_DESC', - AccountsByCreatorIdStddevSampleTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_TWITTER_ASC', - AccountsByCreatorIdStddevSampleTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_TWITTER_DESC', - AccountsByCreatorIdStddevSampleWebAsc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_WEB_ASC', - AccountsByCreatorIdStddevSampleWebDesc = 'ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_WEB_DESC', - AccountsByCreatorIdSumCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdSumCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdSumCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_ASC', - AccountsByCreatorIdSumCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_DESC', - AccountsByCreatorIdSumCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdSumCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdSumCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', - AccountsByCreatorIdSumCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', - AccountsByCreatorIdSumDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_DISPLAY_ASC', - AccountsByCreatorIdSumDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_DISPLAY_DESC', - AccountsByCreatorIdSumEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_EMAIL_ASC', - AccountsByCreatorIdSumEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_EMAIL_DESC', - AccountsByCreatorIdSumIdAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_ID_ASC', - AccountsByCreatorIdSumIdDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_ID_DESC', - AccountsByCreatorIdSumImageAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_IMAGE_ASC', - AccountsByCreatorIdSumImageDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_IMAGE_DESC', - AccountsByCreatorIdSumLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_LEGAL_ASC', - AccountsByCreatorIdSumLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_LEGAL_DESC', - AccountsByCreatorIdSumPgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdSumPgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdSumRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_RIOT_ASC', - AccountsByCreatorIdSumRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_RIOT_DESC', - AccountsByCreatorIdSumTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_TWITTER_ASC', - AccountsByCreatorIdSumTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_TWITTER_DESC', - AccountsByCreatorIdSumWebAsc = 'ACCOUNTS_BY_CREATOR_ID_SUM_WEB_ASC', - AccountsByCreatorIdSumWebDesc = 'ACCOUNTS_BY_CREATOR_ID_SUM_WEB_DESC', - AccountsByCreatorIdVariancePopulationCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdVariancePopulationCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdVariancePopulationCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', - AccountsByCreatorIdVariancePopulationCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', - AccountsByCreatorIdVariancePopulationCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdVariancePopulationCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdVariancePopulationCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', - AccountsByCreatorIdVariancePopulationCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', - AccountsByCreatorIdVariancePopulationDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_DISPLAY_ASC', - AccountsByCreatorIdVariancePopulationDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_DISPLAY_DESC', - AccountsByCreatorIdVariancePopulationEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EMAIL_ASC', - AccountsByCreatorIdVariancePopulationEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EMAIL_DESC', - AccountsByCreatorIdVariancePopulationIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', - AccountsByCreatorIdVariancePopulationIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', - AccountsByCreatorIdVariancePopulationImageAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_IMAGE_ASC', - AccountsByCreatorIdVariancePopulationImageDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_IMAGE_DESC', - AccountsByCreatorIdVariancePopulationLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_LEGAL_ASC', - AccountsByCreatorIdVariancePopulationLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_LEGAL_DESC', - AccountsByCreatorIdVariancePopulationPgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdVariancePopulationPgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdVariancePopulationRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_RIOT_ASC', - AccountsByCreatorIdVariancePopulationRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_RIOT_DESC', - AccountsByCreatorIdVariancePopulationTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_TWITTER_ASC', - AccountsByCreatorIdVariancePopulationTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_TWITTER_DESC', - AccountsByCreatorIdVariancePopulationWebAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_WEB_ASC', - AccountsByCreatorIdVariancePopulationWebDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_WEB_DESC', - AccountsByCreatorIdVarianceSampleCountryCodeIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC', - AccountsByCreatorIdVarianceSampleCountryCodeIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC', - AccountsByCreatorIdVarianceSampleCreatedAtAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', - AccountsByCreatorIdVarianceSampleCreatedAtDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', - AccountsByCreatorIdVarianceSampleCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreatorIdVarianceSampleCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreatorIdVarianceSampleCreatorIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', - AccountsByCreatorIdVarianceSampleCreatorIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', - AccountsByCreatorIdVarianceSampleDisplayAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_DISPLAY_ASC', - AccountsByCreatorIdVarianceSampleDisplayDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_DISPLAY_DESC', - AccountsByCreatorIdVarianceSampleEmailAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EMAIL_ASC', - AccountsByCreatorIdVarianceSampleEmailDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EMAIL_DESC', - AccountsByCreatorIdVarianceSampleIdAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', - AccountsByCreatorIdVarianceSampleIdDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', - AccountsByCreatorIdVarianceSampleImageAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_IMAGE_ASC', - AccountsByCreatorIdVarianceSampleImageDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_IMAGE_DESC', - AccountsByCreatorIdVarianceSampleLegalAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_LEGAL_ASC', - AccountsByCreatorIdVarianceSampleLegalDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_LEGAL_DESC', - AccountsByCreatorIdVarianceSamplePgpFingerprintAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC', - AccountsByCreatorIdVarianceSamplePgpFingerprintDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC', - AccountsByCreatorIdVarianceSampleRiotAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_RIOT_ASC', - AccountsByCreatorIdVarianceSampleRiotDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_RIOT_DESC', - AccountsByCreatorIdVarianceSampleTwitterAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_TWITTER_ASC', - AccountsByCreatorIdVarianceSampleTwitterDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_TWITTER_DESC', - AccountsByCreatorIdVarianceSampleWebAsc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_WEB_ASC', - AccountsByCreatorIdVarianceSampleWebDesc = 'ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_WEB_DESC', - CountryCodeIdAsc = 'COUNTRY_CODE_ID_ASC', - CountryCodeIdDesc = 'COUNTRY_CODE_ID_DESC', - CreatedAtAsc = 'CREATED_AT_ASC', - CreatedAtDesc = 'CREATED_AT_DESC', - CreateAtBlockIdAsc = 'CREATE_AT_BLOCK_ID_ASC', - CreateAtBlockIdDesc = 'CREATE_AT_BLOCK_ID_DESC', - CreatorIdAsc = 'CREATOR_ID_ASC', - CreatorIdDesc = 'CREATOR_ID_DESC', - DisplayAsc = 'DISPLAY_ASC', - DisplayDesc = 'DISPLAY_DESC', - EmailAsc = 'EMAIL_ASC', - EmailDesc = 'EMAIL_DESC', - ExtrinsicsAverageArgumentsAsc = 'EXTRINSICS_AVERAGE_ARGUMENTS_ASC', - ExtrinsicsAverageArgumentsDesc = 'EXTRINSICS_AVERAGE_ARGUMENTS_DESC', - ExtrinsicsAverageBlockIdAsc = 'EXTRINSICS_AVERAGE_BLOCK_ID_ASC', - ExtrinsicsAverageBlockIdDesc = 'EXTRINSICS_AVERAGE_BLOCK_ID_DESC', - ExtrinsicsAverageBlockNumberAsc = 'EXTRINSICS_AVERAGE_BLOCK_NUMBER_ASC', - ExtrinsicsAverageBlockNumberDesc = 'EXTRINSICS_AVERAGE_BLOCK_NUMBER_DESC', - ExtrinsicsAverageHashAsc = 'EXTRINSICS_AVERAGE_HASH_ASC', - ExtrinsicsAverageHashDesc = 'EXTRINSICS_AVERAGE_HASH_DESC', - ExtrinsicsAverageIdAsc = 'EXTRINSICS_AVERAGE_ID_ASC', - ExtrinsicsAverageIdDesc = 'EXTRINSICS_AVERAGE_ID_DESC', - ExtrinsicsAverageIndexAsc = 'EXTRINSICS_AVERAGE_INDEX_ASC', - ExtrinsicsAverageIndexDesc = 'EXTRINSICS_AVERAGE_INDEX_DESC', - ExtrinsicsAverageIsSignedAsc = 'EXTRINSICS_AVERAGE_IS_SIGNED_ASC', - ExtrinsicsAverageIsSignedDesc = 'EXTRINSICS_AVERAGE_IS_SIGNED_DESC', - ExtrinsicsAverageIsSuccessAsc = 'EXTRINSICS_AVERAGE_IS_SUCCESS_ASC', - ExtrinsicsAverageIsSuccessDesc = 'EXTRINSICS_AVERAGE_IS_SUCCESS_DESC', - ExtrinsicsAverageMethodAsc = 'EXTRINSICS_AVERAGE_METHOD_ASC', - ExtrinsicsAverageMethodDesc = 'EXTRINSICS_AVERAGE_METHOD_DESC', - ExtrinsicsAverageModuleAsc = 'EXTRINSICS_AVERAGE_MODULE_ASC', - ExtrinsicsAverageModuleDesc = 'EXTRINSICS_AVERAGE_MODULE_DESC', - ExtrinsicsAverageSignerIdAsc = 'EXTRINSICS_AVERAGE_SIGNER_ID_ASC', - ExtrinsicsAverageSignerIdDesc = 'EXTRINSICS_AVERAGE_SIGNER_ID_DESC', - ExtrinsicsCountAsc = 'EXTRINSICS_COUNT_ASC', - ExtrinsicsCountDesc = 'EXTRINSICS_COUNT_DESC', - ExtrinsicsDistinctCountArgumentsAsc = 'EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_ASC', - ExtrinsicsDistinctCountArgumentsDesc = 'EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_DESC', - ExtrinsicsDistinctCountBlockIdAsc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC', - ExtrinsicsDistinctCountBlockIdDesc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC', - ExtrinsicsDistinctCountBlockNumberAsc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ExtrinsicsDistinctCountBlockNumberDesc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ExtrinsicsDistinctCountHashAsc = 'EXTRINSICS_DISTINCT_COUNT_HASH_ASC', - ExtrinsicsDistinctCountHashDesc = 'EXTRINSICS_DISTINCT_COUNT_HASH_DESC', - ExtrinsicsDistinctCountIdAsc = 'EXTRINSICS_DISTINCT_COUNT_ID_ASC', - ExtrinsicsDistinctCountIdDesc = 'EXTRINSICS_DISTINCT_COUNT_ID_DESC', - ExtrinsicsDistinctCountIndexAsc = 'EXTRINSICS_DISTINCT_COUNT_INDEX_ASC', - ExtrinsicsDistinctCountIndexDesc = 'EXTRINSICS_DISTINCT_COUNT_INDEX_DESC', - ExtrinsicsDistinctCountIsSignedAsc = 'EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_ASC', - ExtrinsicsDistinctCountIsSignedDesc = 'EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_DESC', - ExtrinsicsDistinctCountIsSuccessAsc = 'EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_ASC', - ExtrinsicsDistinctCountIsSuccessDesc = 'EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_DESC', - ExtrinsicsDistinctCountMethodAsc = 'EXTRINSICS_DISTINCT_COUNT_METHOD_ASC', - ExtrinsicsDistinctCountMethodDesc = 'EXTRINSICS_DISTINCT_COUNT_METHOD_DESC', - ExtrinsicsDistinctCountModuleAsc = 'EXTRINSICS_DISTINCT_COUNT_MODULE_ASC', - ExtrinsicsDistinctCountModuleDesc = 'EXTRINSICS_DISTINCT_COUNT_MODULE_DESC', - ExtrinsicsDistinctCountSignerIdAsc = 'EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_ASC', - ExtrinsicsDistinctCountSignerIdDesc = 'EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_DESC', - ExtrinsicsMaxArgumentsAsc = 'EXTRINSICS_MAX_ARGUMENTS_ASC', - ExtrinsicsMaxArgumentsDesc = 'EXTRINSICS_MAX_ARGUMENTS_DESC', - ExtrinsicsMaxBlockIdAsc = 'EXTRINSICS_MAX_BLOCK_ID_ASC', - ExtrinsicsMaxBlockIdDesc = 'EXTRINSICS_MAX_BLOCK_ID_DESC', - ExtrinsicsMaxBlockNumberAsc = 'EXTRINSICS_MAX_BLOCK_NUMBER_ASC', - ExtrinsicsMaxBlockNumberDesc = 'EXTRINSICS_MAX_BLOCK_NUMBER_DESC', - ExtrinsicsMaxHashAsc = 'EXTRINSICS_MAX_HASH_ASC', - ExtrinsicsMaxHashDesc = 'EXTRINSICS_MAX_HASH_DESC', - ExtrinsicsMaxIdAsc = 'EXTRINSICS_MAX_ID_ASC', - ExtrinsicsMaxIdDesc = 'EXTRINSICS_MAX_ID_DESC', - ExtrinsicsMaxIndexAsc = 'EXTRINSICS_MAX_INDEX_ASC', - ExtrinsicsMaxIndexDesc = 'EXTRINSICS_MAX_INDEX_DESC', - ExtrinsicsMaxIsSignedAsc = 'EXTRINSICS_MAX_IS_SIGNED_ASC', - ExtrinsicsMaxIsSignedDesc = 'EXTRINSICS_MAX_IS_SIGNED_DESC', - ExtrinsicsMaxIsSuccessAsc = 'EXTRINSICS_MAX_IS_SUCCESS_ASC', - ExtrinsicsMaxIsSuccessDesc = 'EXTRINSICS_MAX_IS_SUCCESS_DESC', - ExtrinsicsMaxMethodAsc = 'EXTRINSICS_MAX_METHOD_ASC', - ExtrinsicsMaxMethodDesc = 'EXTRINSICS_MAX_METHOD_DESC', - ExtrinsicsMaxModuleAsc = 'EXTRINSICS_MAX_MODULE_ASC', - ExtrinsicsMaxModuleDesc = 'EXTRINSICS_MAX_MODULE_DESC', - ExtrinsicsMaxSignerIdAsc = 'EXTRINSICS_MAX_SIGNER_ID_ASC', - ExtrinsicsMaxSignerIdDesc = 'EXTRINSICS_MAX_SIGNER_ID_DESC', - ExtrinsicsMinArgumentsAsc = 'EXTRINSICS_MIN_ARGUMENTS_ASC', - ExtrinsicsMinArgumentsDesc = 'EXTRINSICS_MIN_ARGUMENTS_DESC', - ExtrinsicsMinBlockIdAsc = 'EXTRINSICS_MIN_BLOCK_ID_ASC', - ExtrinsicsMinBlockIdDesc = 'EXTRINSICS_MIN_BLOCK_ID_DESC', - ExtrinsicsMinBlockNumberAsc = 'EXTRINSICS_MIN_BLOCK_NUMBER_ASC', - ExtrinsicsMinBlockNumberDesc = 'EXTRINSICS_MIN_BLOCK_NUMBER_DESC', - ExtrinsicsMinHashAsc = 'EXTRINSICS_MIN_HASH_ASC', - ExtrinsicsMinHashDesc = 'EXTRINSICS_MIN_HASH_DESC', - ExtrinsicsMinIdAsc = 'EXTRINSICS_MIN_ID_ASC', - ExtrinsicsMinIdDesc = 'EXTRINSICS_MIN_ID_DESC', - ExtrinsicsMinIndexAsc = 'EXTRINSICS_MIN_INDEX_ASC', - ExtrinsicsMinIndexDesc = 'EXTRINSICS_MIN_INDEX_DESC', - ExtrinsicsMinIsSignedAsc = 'EXTRINSICS_MIN_IS_SIGNED_ASC', - ExtrinsicsMinIsSignedDesc = 'EXTRINSICS_MIN_IS_SIGNED_DESC', - ExtrinsicsMinIsSuccessAsc = 'EXTRINSICS_MIN_IS_SUCCESS_ASC', - ExtrinsicsMinIsSuccessDesc = 'EXTRINSICS_MIN_IS_SUCCESS_DESC', - ExtrinsicsMinMethodAsc = 'EXTRINSICS_MIN_METHOD_ASC', - ExtrinsicsMinMethodDesc = 'EXTRINSICS_MIN_METHOD_DESC', - ExtrinsicsMinModuleAsc = 'EXTRINSICS_MIN_MODULE_ASC', - ExtrinsicsMinModuleDesc = 'EXTRINSICS_MIN_MODULE_DESC', - ExtrinsicsMinSignerIdAsc = 'EXTRINSICS_MIN_SIGNER_ID_ASC', - ExtrinsicsMinSignerIdDesc = 'EXTRINSICS_MIN_SIGNER_ID_DESC', - ExtrinsicsStddevPopulationArgumentsAsc = 'EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_ASC', - ExtrinsicsStddevPopulationArgumentsDesc = 'EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_DESC', - ExtrinsicsStddevPopulationBlockIdAsc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC', - ExtrinsicsStddevPopulationBlockIdDesc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC', - ExtrinsicsStddevPopulationBlockNumberAsc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ExtrinsicsStddevPopulationBlockNumberDesc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ExtrinsicsStddevPopulationHashAsc = 'EXTRINSICS_STDDEV_POPULATION_HASH_ASC', - ExtrinsicsStddevPopulationHashDesc = 'EXTRINSICS_STDDEV_POPULATION_HASH_DESC', - ExtrinsicsStddevPopulationIdAsc = 'EXTRINSICS_STDDEV_POPULATION_ID_ASC', - ExtrinsicsStddevPopulationIdDesc = 'EXTRINSICS_STDDEV_POPULATION_ID_DESC', - ExtrinsicsStddevPopulationIndexAsc = 'EXTRINSICS_STDDEV_POPULATION_INDEX_ASC', - ExtrinsicsStddevPopulationIndexDesc = 'EXTRINSICS_STDDEV_POPULATION_INDEX_DESC', - ExtrinsicsStddevPopulationIsSignedAsc = 'EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_ASC', - ExtrinsicsStddevPopulationIsSignedDesc = 'EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_DESC', - ExtrinsicsStddevPopulationIsSuccessAsc = 'EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_ASC', - ExtrinsicsStddevPopulationIsSuccessDesc = 'EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_DESC', - ExtrinsicsStddevPopulationMethodAsc = 'EXTRINSICS_STDDEV_POPULATION_METHOD_ASC', - ExtrinsicsStddevPopulationMethodDesc = 'EXTRINSICS_STDDEV_POPULATION_METHOD_DESC', - ExtrinsicsStddevPopulationModuleAsc = 'EXTRINSICS_STDDEV_POPULATION_MODULE_ASC', - ExtrinsicsStddevPopulationModuleDesc = 'EXTRINSICS_STDDEV_POPULATION_MODULE_DESC', - ExtrinsicsStddevPopulationSignerIdAsc = 'EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_ASC', - ExtrinsicsStddevPopulationSignerIdDesc = 'EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_DESC', - ExtrinsicsStddevSampleArgumentsAsc = 'EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_ASC', - ExtrinsicsStddevSampleArgumentsDesc = 'EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_DESC', - ExtrinsicsStddevSampleBlockIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC', - ExtrinsicsStddevSampleBlockIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC', - ExtrinsicsStddevSampleBlockNumberAsc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ExtrinsicsStddevSampleBlockNumberDesc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ExtrinsicsStddevSampleHashAsc = 'EXTRINSICS_STDDEV_SAMPLE_HASH_ASC', - ExtrinsicsStddevSampleHashDesc = 'EXTRINSICS_STDDEV_SAMPLE_HASH_DESC', - ExtrinsicsStddevSampleIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_ID_ASC', - ExtrinsicsStddevSampleIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_ID_DESC', - ExtrinsicsStddevSampleIndexAsc = 'EXTRINSICS_STDDEV_SAMPLE_INDEX_ASC', - ExtrinsicsStddevSampleIndexDesc = 'EXTRINSICS_STDDEV_SAMPLE_INDEX_DESC', - ExtrinsicsStddevSampleIsSignedAsc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_ASC', - ExtrinsicsStddevSampleIsSignedDesc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_DESC', - ExtrinsicsStddevSampleIsSuccessAsc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_ASC', - ExtrinsicsStddevSampleIsSuccessDesc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_DESC', - ExtrinsicsStddevSampleMethodAsc = 'EXTRINSICS_STDDEV_SAMPLE_METHOD_ASC', - ExtrinsicsStddevSampleMethodDesc = 'EXTRINSICS_STDDEV_SAMPLE_METHOD_DESC', - ExtrinsicsStddevSampleModuleAsc = 'EXTRINSICS_STDDEV_SAMPLE_MODULE_ASC', - ExtrinsicsStddevSampleModuleDesc = 'EXTRINSICS_STDDEV_SAMPLE_MODULE_DESC', - ExtrinsicsStddevSampleSignerIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_ASC', - ExtrinsicsStddevSampleSignerIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_DESC', - ExtrinsicsSumArgumentsAsc = 'EXTRINSICS_SUM_ARGUMENTS_ASC', - ExtrinsicsSumArgumentsDesc = 'EXTRINSICS_SUM_ARGUMENTS_DESC', - ExtrinsicsSumBlockIdAsc = 'EXTRINSICS_SUM_BLOCK_ID_ASC', - ExtrinsicsSumBlockIdDesc = 'EXTRINSICS_SUM_BLOCK_ID_DESC', - ExtrinsicsSumBlockNumberAsc = 'EXTRINSICS_SUM_BLOCK_NUMBER_ASC', - ExtrinsicsSumBlockNumberDesc = 'EXTRINSICS_SUM_BLOCK_NUMBER_DESC', - ExtrinsicsSumHashAsc = 'EXTRINSICS_SUM_HASH_ASC', - ExtrinsicsSumHashDesc = 'EXTRINSICS_SUM_HASH_DESC', - ExtrinsicsSumIdAsc = 'EXTRINSICS_SUM_ID_ASC', - ExtrinsicsSumIdDesc = 'EXTRINSICS_SUM_ID_DESC', - ExtrinsicsSumIndexAsc = 'EXTRINSICS_SUM_INDEX_ASC', - ExtrinsicsSumIndexDesc = 'EXTRINSICS_SUM_INDEX_DESC', - ExtrinsicsSumIsSignedAsc = 'EXTRINSICS_SUM_IS_SIGNED_ASC', - ExtrinsicsSumIsSignedDesc = 'EXTRINSICS_SUM_IS_SIGNED_DESC', - ExtrinsicsSumIsSuccessAsc = 'EXTRINSICS_SUM_IS_SUCCESS_ASC', - ExtrinsicsSumIsSuccessDesc = 'EXTRINSICS_SUM_IS_SUCCESS_DESC', - ExtrinsicsSumMethodAsc = 'EXTRINSICS_SUM_METHOD_ASC', - ExtrinsicsSumMethodDesc = 'EXTRINSICS_SUM_METHOD_DESC', - ExtrinsicsSumModuleAsc = 'EXTRINSICS_SUM_MODULE_ASC', - ExtrinsicsSumModuleDesc = 'EXTRINSICS_SUM_MODULE_DESC', - ExtrinsicsSumSignerIdAsc = 'EXTRINSICS_SUM_SIGNER_ID_ASC', - ExtrinsicsSumSignerIdDesc = 'EXTRINSICS_SUM_SIGNER_ID_DESC', - ExtrinsicsVariancePopulationArgumentsAsc = 'EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_ASC', - ExtrinsicsVariancePopulationArgumentsDesc = 'EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_DESC', - ExtrinsicsVariancePopulationBlockIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC', - ExtrinsicsVariancePopulationBlockIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC', - ExtrinsicsVariancePopulationBlockNumberAsc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ExtrinsicsVariancePopulationBlockNumberDesc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ExtrinsicsVariancePopulationHashAsc = 'EXTRINSICS_VARIANCE_POPULATION_HASH_ASC', - ExtrinsicsVariancePopulationHashDesc = 'EXTRINSICS_VARIANCE_POPULATION_HASH_DESC', - ExtrinsicsVariancePopulationIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_ID_ASC', - ExtrinsicsVariancePopulationIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_ID_DESC', - ExtrinsicsVariancePopulationIndexAsc = 'EXTRINSICS_VARIANCE_POPULATION_INDEX_ASC', - ExtrinsicsVariancePopulationIndexDesc = 'EXTRINSICS_VARIANCE_POPULATION_INDEX_DESC', - ExtrinsicsVariancePopulationIsSignedAsc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_ASC', - ExtrinsicsVariancePopulationIsSignedDesc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_DESC', - ExtrinsicsVariancePopulationIsSuccessAsc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_ASC', - ExtrinsicsVariancePopulationIsSuccessDesc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_DESC', - ExtrinsicsVariancePopulationMethodAsc = 'EXTRINSICS_VARIANCE_POPULATION_METHOD_ASC', - ExtrinsicsVariancePopulationMethodDesc = 'EXTRINSICS_VARIANCE_POPULATION_METHOD_DESC', - ExtrinsicsVariancePopulationModuleAsc = 'EXTRINSICS_VARIANCE_POPULATION_MODULE_ASC', - ExtrinsicsVariancePopulationModuleDesc = 'EXTRINSICS_VARIANCE_POPULATION_MODULE_DESC', - ExtrinsicsVariancePopulationSignerIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_ASC', - ExtrinsicsVariancePopulationSignerIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_DESC', - ExtrinsicsVarianceSampleArgumentsAsc = 'EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_ASC', - ExtrinsicsVarianceSampleArgumentsDesc = 'EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_DESC', - ExtrinsicsVarianceSampleBlockIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ExtrinsicsVarianceSampleBlockIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ExtrinsicsVarianceSampleBlockNumberAsc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ExtrinsicsVarianceSampleBlockNumberDesc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ExtrinsicsVarianceSampleHashAsc = 'EXTRINSICS_VARIANCE_SAMPLE_HASH_ASC', - ExtrinsicsVarianceSampleHashDesc = 'EXTRINSICS_VARIANCE_SAMPLE_HASH_DESC', - ExtrinsicsVarianceSampleIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_ID_ASC', - ExtrinsicsVarianceSampleIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_ID_DESC', - ExtrinsicsVarianceSampleIndexAsc = 'EXTRINSICS_VARIANCE_SAMPLE_INDEX_ASC', - ExtrinsicsVarianceSampleIndexDesc = 'EXTRINSICS_VARIANCE_SAMPLE_INDEX_DESC', - ExtrinsicsVarianceSampleIsSignedAsc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_ASC', - ExtrinsicsVarianceSampleIsSignedDesc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_DESC', - ExtrinsicsVarianceSampleIsSuccessAsc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_ASC', - ExtrinsicsVarianceSampleIsSuccessDesc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_DESC', - ExtrinsicsVarianceSampleMethodAsc = 'EXTRINSICS_VARIANCE_SAMPLE_METHOD_ASC', - ExtrinsicsVarianceSampleMethodDesc = 'EXTRINSICS_VARIANCE_SAMPLE_METHOD_DESC', - ExtrinsicsVarianceSampleModuleAsc = 'EXTRINSICS_VARIANCE_SAMPLE_MODULE_ASC', - ExtrinsicsVarianceSampleModuleDesc = 'EXTRINSICS_VARIANCE_SAMPLE_MODULE_DESC', - ExtrinsicsVarianceSampleSignerIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_ASC', - ExtrinsicsVarianceSampleSignerIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_DESC', - HeartBeatsAverageAccountIdAsc = 'HEART_BEATS_AVERAGE_ACCOUNT_ID_ASC', - HeartBeatsAverageAccountIdDesc = 'HEART_BEATS_AVERAGE_ACCOUNT_ID_DESC', - HeartBeatsAverageBlockNumberAsc = 'HEART_BEATS_AVERAGE_BLOCK_NUMBER_ASC', - HeartBeatsAverageBlockNumberDesc = 'HEART_BEATS_AVERAGE_BLOCK_NUMBER_DESC', - HeartBeatsAverageIdAsc = 'HEART_BEATS_AVERAGE_ID_ASC', - HeartBeatsAverageIdDesc = 'HEART_BEATS_AVERAGE_ID_DESC', - HeartBeatsAverageSessionIdAsc = 'HEART_BEATS_AVERAGE_SESSION_ID_ASC', - HeartBeatsAverageSessionIdDesc = 'HEART_BEATS_AVERAGE_SESSION_ID_DESC', - HeartBeatsCountAsc = 'HEART_BEATS_COUNT_ASC', - HeartBeatsCountDesc = 'HEART_BEATS_COUNT_DESC', - HeartBeatsDistinctCountAccountIdAsc = 'HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_ASC', - HeartBeatsDistinctCountAccountIdDesc = 'HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_DESC', - HeartBeatsDistinctCountBlockNumberAsc = 'HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - HeartBeatsDistinctCountBlockNumberDesc = 'HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - HeartBeatsDistinctCountIdAsc = 'HEART_BEATS_DISTINCT_COUNT_ID_ASC', - HeartBeatsDistinctCountIdDesc = 'HEART_BEATS_DISTINCT_COUNT_ID_DESC', - HeartBeatsDistinctCountSessionIdAsc = 'HEART_BEATS_DISTINCT_COUNT_SESSION_ID_ASC', - HeartBeatsDistinctCountSessionIdDesc = 'HEART_BEATS_DISTINCT_COUNT_SESSION_ID_DESC', - HeartBeatsMaxAccountIdAsc = 'HEART_BEATS_MAX_ACCOUNT_ID_ASC', - HeartBeatsMaxAccountIdDesc = 'HEART_BEATS_MAX_ACCOUNT_ID_DESC', - HeartBeatsMaxBlockNumberAsc = 'HEART_BEATS_MAX_BLOCK_NUMBER_ASC', - HeartBeatsMaxBlockNumberDesc = 'HEART_BEATS_MAX_BLOCK_NUMBER_DESC', - HeartBeatsMaxIdAsc = 'HEART_BEATS_MAX_ID_ASC', - HeartBeatsMaxIdDesc = 'HEART_BEATS_MAX_ID_DESC', - HeartBeatsMaxSessionIdAsc = 'HEART_BEATS_MAX_SESSION_ID_ASC', - HeartBeatsMaxSessionIdDesc = 'HEART_BEATS_MAX_SESSION_ID_DESC', - HeartBeatsMinAccountIdAsc = 'HEART_BEATS_MIN_ACCOUNT_ID_ASC', - HeartBeatsMinAccountIdDesc = 'HEART_BEATS_MIN_ACCOUNT_ID_DESC', - HeartBeatsMinBlockNumberAsc = 'HEART_BEATS_MIN_BLOCK_NUMBER_ASC', - HeartBeatsMinBlockNumberDesc = 'HEART_BEATS_MIN_BLOCK_NUMBER_DESC', - HeartBeatsMinIdAsc = 'HEART_BEATS_MIN_ID_ASC', - HeartBeatsMinIdDesc = 'HEART_BEATS_MIN_ID_DESC', - HeartBeatsMinSessionIdAsc = 'HEART_BEATS_MIN_SESSION_ID_ASC', - HeartBeatsMinSessionIdDesc = 'HEART_BEATS_MIN_SESSION_ID_DESC', - HeartBeatsStddevPopulationAccountIdAsc = 'HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_ASC', - HeartBeatsStddevPopulationAccountIdDesc = 'HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_DESC', - HeartBeatsStddevPopulationBlockNumberAsc = 'HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - HeartBeatsStddevPopulationBlockNumberDesc = 'HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - HeartBeatsStddevPopulationIdAsc = 'HEART_BEATS_STDDEV_POPULATION_ID_ASC', - HeartBeatsStddevPopulationIdDesc = 'HEART_BEATS_STDDEV_POPULATION_ID_DESC', - HeartBeatsStddevPopulationSessionIdAsc = 'HEART_BEATS_STDDEV_POPULATION_SESSION_ID_ASC', - HeartBeatsStddevPopulationSessionIdDesc = 'HEART_BEATS_STDDEV_POPULATION_SESSION_ID_DESC', - HeartBeatsStddevSampleAccountIdAsc = 'HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_ASC', - HeartBeatsStddevSampleAccountIdDesc = 'HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_DESC', - HeartBeatsStddevSampleBlockNumberAsc = 'HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - HeartBeatsStddevSampleBlockNumberDesc = 'HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - HeartBeatsStddevSampleIdAsc = 'HEART_BEATS_STDDEV_SAMPLE_ID_ASC', - HeartBeatsStddevSampleIdDesc = 'HEART_BEATS_STDDEV_SAMPLE_ID_DESC', - HeartBeatsStddevSampleSessionIdAsc = 'HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_ASC', - HeartBeatsStddevSampleSessionIdDesc = 'HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_DESC', - HeartBeatsSumAccountIdAsc = 'HEART_BEATS_SUM_ACCOUNT_ID_ASC', - HeartBeatsSumAccountIdDesc = 'HEART_BEATS_SUM_ACCOUNT_ID_DESC', - HeartBeatsSumBlockNumberAsc = 'HEART_BEATS_SUM_BLOCK_NUMBER_ASC', - HeartBeatsSumBlockNumberDesc = 'HEART_BEATS_SUM_BLOCK_NUMBER_DESC', - HeartBeatsSumIdAsc = 'HEART_BEATS_SUM_ID_ASC', - HeartBeatsSumIdDesc = 'HEART_BEATS_SUM_ID_DESC', - HeartBeatsSumSessionIdAsc = 'HEART_BEATS_SUM_SESSION_ID_ASC', - HeartBeatsSumSessionIdDesc = 'HEART_BEATS_SUM_SESSION_ID_DESC', - HeartBeatsVariancePopulationAccountIdAsc = 'HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_ASC', - HeartBeatsVariancePopulationAccountIdDesc = 'HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_DESC', - HeartBeatsVariancePopulationBlockNumberAsc = 'HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - HeartBeatsVariancePopulationBlockNumberDesc = 'HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - HeartBeatsVariancePopulationIdAsc = 'HEART_BEATS_VARIANCE_POPULATION_ID_ASC', - HeartBeatsVariancePopulationIdDesc = 'HEART_BEATS_VARIANCE_POPULATION_ID_DESC', - HeartBeatsVariancePopulationSessionIdAsc = 'HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_ASC', - HeartBeatsVariancePopulationSessionIdDesc = 'HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_DESC', - HeartBeatsVarianceSampleAccountIdAsc = 'HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', - HeartBeatsVarianceSampleAccountIdDesc = 'HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', - HeartBeatsVarianceSampleBlockNumberAsc = 'HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - HeartBeatsVarianceSampleBlockNumberDesc = 'HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - HeartBeatsVarianceSampleIdAsc = 'HEART_BEATS_VARIANCE_SAMPLE_ID_ASC', - HeartBeatsVarianceSampleIdDesc = 'HEART_BEATS_VARIANCE_SAMPLE_ID_DESC', - HeartBeatsVarianceSampleSessionIdAsc = 'HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_ASC', - HeartBeatsVarianceSampleSessionIdDesc = 'HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - ImageAsc = 'IMAGE_ASC', - ImageDesc = 'IMAGE_DESC', - LegalAsc = 'LEGAL_ASC', - LegalDesc = 'LEGAL_DESC', - Natural = 'NATURAL', - PgpFingerprintAsc = 'PGP_FINGERPRINT_ASC', - PgpFingerprintDesc = 'PGP_FINGERPRINT_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposersAverageAccountIdAsc = 'PROPOSERS_AVERAGE_ACCOUNT_ID_ASC', - ProposersAverageAccountIdDesc = 'PROPOSERS_AVERAGE_ACCOUNT_ID_DESC', - ProposersAverageIdAsc = 'PROPOSERS_AVERAGE_ID_ASC', - ProposersAverageIdDesc = 'PROPOSERS_AVERAGE_ID_DESC', - ProposersCountAsc = 'PROPOSERS_COUNT_ASC', - ProposersCountDesc = 'PROPOSERS_COUNT_DESC', - ProposersDistinctCountAccountIdAsc = 'PROPOSERS_DISTINCT_COUNT_ACCOUNT_ID_ASC', - ProposersDistinctCountAccountIdDesc = 'PROPOSERS_DISTINCT_COUNT_ACCOUNT_ID_DESC', - ProposersDistinctCountIdAsc = 'PROPOSERS_DISTINCT_COUNT_ID_ASC', - ProposersDistinctCountIdDesc = 'PROPOSERS_DISTINCT_COUNT_ID_DESC', - ProposersMaxAccountIdAsc = 'PROPOSERS_MAX_ACCOUNT_ID_ASC', - ProposersMaxAccountIdDesc = 'PROPOSERS_MAX_ACCOUNT_ID_DESC', - ProposersMaxIdAsc = 'PROPOSERS_MAX_ID_ASC', - ProposersMaxIdDesc = 'PROPOSERS_MAX_ID_DESC', - ProposersMinAccountIdAsc = 'PROPOSERS_MIN_ACCOUNT_ID_ASC', - ProposersMinAccountIdDesc = 'PROPOSERS_MIN_ACCOUNT_ID_DESC', - ProposersMinIdAsc = 'PROPOSERS_MIN_ID_ASC', - ProposersMinIdDesc = 'PROPOSERS_MIN_ID_DESC', - ProposersStddevPopulationAccountIdAsc = 'PROPOSERS_STDDEV_POPULATION_ACCOUNT_ID_ASC', - ProposersStddevPopulationAccountIdDesc = 'PROPOSERS_STDDEV_POPULATION_ACCOUNT_ID_DESC', - ProposersStddevPopulationIdAsc = 'PROPOSERS_STDDEV_POPULATION_ID_ASC', - ProposersStddevPopulationIdDesc = 'PROPOSERS_STDDEV_POPULATION_ID_DESC', - ProposersStddevSampleAccountIdAsc = 'PROPOSERS_STDDEV_SAMPLE_ACCOUNT_ID_ASC', - ProposersStddevSampleAccountIdDesc = 'PROPOSERS_STDDEV_SAMPLE_ACCOUNT_ID_DESC', - ProposersStddevSampleIdAsc = 'PROPOSERS_STDDEV_SAMPLE_ID_ASC', - ProposersStddevSampleIdDesc = 'PROPOSERS_STDDEV_SAMPLE_ID_DESC', - ProposersSumAccountIdAsc = 'PROPOSERS_SUM_ACCOUNT_ID_ASC', - ProposersSumAccountIdDesc = 'PROPOSERS_SUM_ACCOUNT_ID_DESC', - ProposersSumIdAsc = 'PROPOSERS_SUM_ID_ASC', - ProposersSumIdDesc = 'PROPOSERS_SUM_ID_DESC', - ProposersVariancePopulationAccountIdAsc = 'PROPOSERS_VARIANCE_POPULATION_ACCOUNT_ID_ASC', - ProposersVariancePopulationAccountIdDesc = 'PROPOSERS_VARIANCE_POPULATION_ACCOUNT_ID_DESC', - ProposersVariancePopulationIdAsc = 'PROPOSERS_VARIANCE_POPULATION_ID_ASC', - ProposersVariancePopulationIdDesc = 'PROPOSERS_VARIANCE_POPULATION_ID_DESC', - ProposersVarianceSampleAccountIdAsc = 'PROPOSERS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', - ProposersVarianceSampleAccountIdDesc = 'PROPOSERS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', - ProposersVarianceSampleIdAsc = 'PROPOSERS_VARIANCE_SAMPLE_ID_ASC', - ProposersVarianceSampleIdDesc = 'PROPOSERS_VARIANCE_SAMPLE_ID_DESC', - RiotAsc = 'RIOT_ASC', - RiotDesc = 'RIOT_DESC', - TwitterAsc = 'TWITTER_ASC', - TwitterDesc = 'TWITTER_DESC', - ValidatorsAverageAccountIdAsc = 'VALIDATORS_AVERAGE_ACCOUNT_ID_ASC', - ValidatorsAverageAccountIdDesc = 'VALIDATORS_AVERAGE_ACCOUNT_ID_DESC', - ValidatorsAverageAuthorityIdAsc = 'VALIDATORS_AVERAGE_AUTHORITY_ID_ASC', - ValidatorsAverageAuthorityIdDesc = 'VALIDATORS_AVERAGE_AUTHORITY_ID_DESC', - ValidatorsAverageIdAsc = 'VALIDATORS_AVERAGE_ID_ASC', - ValidatorsAverageIdDesc = 'VALIDATORS_AVERAGE_ID_DESC', - ValidatorsCountAsc = 'VALIDATORS_COUNT_ASC', - ValidatorsCountDesc = 'VALIDATORS_COUNT_DESC', - ValidatorsDistinctCountAccountIdAsc = 'VALIDATORS_DISTINCT_COUNT_ACCOUNT_ID_ASC', - ValidatorsDistinctCountAccountIdDesc = 'VALIDATORS_DISTINCT_COUNT_ACCOUNT_ID_DESC', - ValidatorsDistinctCountAuthorityIdAsc = 'VALIDATORS_DISTINCT_COUNT_AUTHORITY_ID_ASC', - ValidatorsDistinctCountAuthorityIdDesc = 'VALIDATORS_DISTINCT_COUNT_AUTHORITY_ID_DESC', - ValidatorsDistinctCountIdAsc = 'VALIDATORS_DISTINCT_COUNT_ID_ASC', - ValidatorsDistinctCountIdDesc = 'VALIDATORS_DISTINCT_COUNT_ID_DESC', - ValidatorsMaxAccountIdAsc = 'VALIDATORS_MAX_ACCOUNT_ID_ASC', - ValidatorsMaxAccountIdDesc = 'VALIDATORS_MAX_ACCOUNT_ID_DESC', - ValidatorsMaxAuthorityIdAsc = 'VALIDATORS_MAX_AUTHORITY_ID_ASC', - ValidatorsMaxAuthorityIdDesc = 'VALIDATORS_MAX_AUTHORITY_ID_DESC', - ValidatorsMaxIdAsc = 'VALIDATORS_MAX_ID_ASC', - ValidatorsMaxIdDesc = 'VALIDATORS_MAX_ID_DESC', - ValidatorsMinAccountIdAsc = 'VALIDATORS_MIN_ACCOUNT_ID_ASC', - ValidatorsMinAccountIdDesc = 'VALIDATORS_MIN_ACCOUNT_ID_DESC', - ValidatorsMinAuthorityIdAsc = 'VALIDATORS_MIN_AUTHORITY_ID_ASC', - ValidatorsMinAuthorityIdDesc = 'VALIDATORS_MIN_AUTHORITY_ID_DESC', - ValidatorsMinIdAsc = 'VALIDATORS_MIN_ID_ASC', - ValidatorsMinIdDesc = 'VALIDATORS_MIN_ID_DESC', - ValidatorsStddevPopulationAccountIdAsc = 'VALIDATORS_STDDEV_POPULATION_ACCOUNT_ID_ASC', - ValidatorsStddevPopulationAccountIdDesc = 'VALIDATORS_STDDEV_POPULATION_ACCOUNT_ID_DESC', - ValidatorsStddevPopulationAuthorityIdAsc = 'VALIDATORS_STDDEV_POPULATION_AUTHORITY_ID_ASC', - ValidatorsStddevPopulationAuthorityIdDesc = 'VALIDATORS_STDDEV_POPULATION_AUTHORITY_ID_DESC', - ValidatorsStddevPopulationIdAsc = 'VALIDATORS_STDDEV_POPULATION_ID_ASC', - ValidatorsStddevPopulationIdDesc = 'VALIDATORS_STDDEV_POPULATION_ID_DESC', - ValidatorsStddevSampleAccountIdAsc = 'VALIDATORS_STDDEV_SAMPLE_ACCOUNT_ID_ASC', - ValidatorsStddevSampleAccountIdDesc = 'VALIDATORS_STDDEV_SAMPLE_ACCOUNT_ID_DESC', - ValidatorsStddevSampleAuthorityIdAsc = 'VALIDATORS_STDDEV_SAMPLE_AUTHORITY_ID_ASC', - ValidatorsStddevSampleAuthorityIdDesc = 'VALIDATORS_STDDEV_SAMPLE_AUTHORITY_ID_DESC', - ValidatorsStddevSampleIdAsc = 'VALIDATORS_STDDEV_SAMPLE_ID_ASC', - ValidatorsStddevSampleIdDesc = 'VALIDATORS_STDDEV_SAMPLE_ID_DESC', - ValidatorsSumAccountIdAsc = 'VALIDATORS_SUM_ACCOUNT_ID_ASC', - ValidatorsSumAccountIdDesc = 'VALIDATORS_SUM_ACCOUNT_ID_DESC', - ValidatorsSumAuthorityIdAsc = 'VALIDATORS_SUM_AUTHORITY_ID_ASC', - ValidatorsSumAuthorityIdDesc = 'VALIDATORS_SUM_AUTHORITY_ID_DESC', - ValidatorsSumIdAsc = 'VALIDATORS_SUM_ID_ASC', - ValidatorsSumIdDesc = 'VALIDATORS_SUM_ID_DESC', - ValidatorsVariancePopulationAccountIdAsc = 'VALIDATORS_VARIANCE_POPULATION_ACCOUNT_ID_ASC', - ValidatorsVariancePopulationAccountIdDesc = 'VALIDATORS_VARIANCE_POPULATION_ACCOUNT_ID_DESC', - ValidatorsVariancePopulationAuthorityIdAsc = 'VALIDATORS_VARIANCE_POPULATION_AUTHORITY_ID_ASC', - ValidatorsVariancePopulationAuthorityIdDesc = 'VALIDATORS_VARIANCE_POPULATION_AUTHORITY_ID_DESC', - ValidatorsVariancePopulationIdAsc = 'VALIDATORS_VARIANCE_POPULATION_ID_ASC', - ValidatorsVariancePopulationIdDesc = 'VALIDATORS_VARIANCE_POPULATION_ID_DESC', - ValidatorsVarianceSampleAccountIdAsc = 'VALIDATORS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', - ValidatorsVarianceSampleAccountIdDesc = 'VALIDATORS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', - ValidatorsVarianceSampleAuthorityIdAsc = 'VALIDATORS_VARIANCE_SAMPLE_AUTHORITY_ID_ASC', - ValidatorsVarianceSampleAuthorityIdDesc = 'VALIDATORS_VARIANCE_SAMPLE_AUTHORITY_ID_DESC', - ValidatorsVarianceSampleIdAsc = 'VALIDATORS_VARIANCE_SAMPLE_ID_ASC', - ValidatorsVarianceSampleIdDesc = 'VALIDATORS_VARIANCE_SAMPLE_ID_DESC', - WebAsc = 'WEB_ASC', - WebDesc = 'WEB_DESC', -} - -/** @enum\n@enumName ProposalStatus */ -export enum AppEnum155D64Ff70 { - Accepted = 'Accepted', - Executed = 'Executed', - FailedToExecute = 'FailedToExecute', - Open = 'Open', - Rejected = 'Rejected', - Removed = 'Removed', - Signed = 'Signed', -} - -/** A filter to be used against AppEnum155D64Ff70 fields. All fields are combined with a logical ‘and.’ */ -export type AppEnum155D64Ff70Filter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -/** @enum\n@enumName ThresholdVariant */ -export enum AppEnum790A3Fe4Ce { - KeyGen = 'KEY_GEN', - Proposer = 'PROPOSER', - Signature = 'SIGNATURE', -} - -/** A filter to be used against AppEnum790A3Fe4Ce fields. All fields are combined with a logical ‘and.’ */ -export type AppEnum790A3Fe4CeFilter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -/** @enum\n@enumName ProposalType */ -export enum AppEnumB6165934C8 { - AnchorCreateProposal = 'AnchorCreateProposal', - AnchorUpdateProposal = 'AnchorUpdateProposal', - EvmProposal = 'EvmProposal', - FeeRecipientUpdateProposal = 'FeeRecipientUpdateProposal', - MaxDepositLimitUpdateProposal = 'MaxDepositLimitUpdateProposal', - MinWithdrawalLimitUpdateProposal = 'MinWithdrawalLimitUpdateProposal', - ProposerSetUpdateProposal = 'ProposerSetUpdateProposal', - RefreshVote = 'RefreshVote', - RescueTokensProposal = 'RescueTokensProposal', - ResourceIdUpdateProposal = 'ResourceIdUpdateProposal', - SetTreasuryHandlerProposal = 'SetTreasuryHandlerProposal', - SetVerifierProposal = 'SetVerifierProposal', - TokenAddProposal = 'TokenAddProposal', - TokenRemoveProposal = 'TokenRemoveProposal', - Unknown = 'Unknown', - WrappingFeeUpdateProposal = 'WrappingFeeUpdateProposal', -} - -/** A filter to be used against AppEnumB6165934C8 fields. All fields are combined with a logical ‘and.’ */ -export type AppEnumB6165934C8Filter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -/** @enum\n@enumName VoteType */ -export enum AppEnumFe385C7221 { - Abstain = 'ABSTAIN', - Against = 'AGAINST', - For = 'FOR', -} - -/** A filter to be used against AppEnumFe385C7221 fields. All fields are combined with a logical ‘and.’ */ -export type AppEnumFe385C7221Filter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -/** A connection to a list of `Authority` values. */ -export type AuthoritiesConnection = { - __typename?: 'AuthoritiesConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Authority` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Authority` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Authority` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Authority` values. */ -export type AuthoritiesConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Authority` edge in the connection. */ -export type AuthoritiesEdge = { - __typename?: 'AuthoritiesEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Authority` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Authority` for usage during aggregation. */ -export enum AuthoritiesGroupBy { - BlockId = 'BLOCK_ID', - Current = 'CURRENT', - Next = 'NEXT', -} - -/** Conditions for `Authority` aggregates. */ -export type AuthoritiesHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `Authority`. */ -export enum AuthoritiesOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - CurrentAsc = 'CURRENT_ASC', - CurrentDesc = 'CURRENT_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - NextAsc = 'NEXT_ASC', - NextDesc = 'NEXT_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', -} - -export type Authority = Node & { - __typename?: 'Authority'; - /** Reads a single `Block` that is related to this `Authority`. */ - block?: Maybe; - blockId: Scalars['String']; - current?: Maybe; - id: Scalars['String']; - next?: Maybe; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; -}; - -export type AuthorityAggregates = { - __typename?: 'AuthorityAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -export type AuthorityDistinctCountAggregates = { - __typename?: 'AuthorityDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of current across the matching connection */ - current?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of next across the matching connection */ - next?: Maybe; -}; - -/** A filter to be used against `Authority` object types. All fields are combined with a logical ‘and.’ */ -export type AuthorityFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `current` field. */ - current?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `next` field. */ - next?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; -}; - -/** A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ */ -export type BigFloatFilter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -export type Block = Node & { - __typename?: 'Block'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByAccountCreateAtBlockIdAndCreatorId: BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection; - /** Reads and enables pagination through a set of `Account`. */ - accountsByCreateAtBlockId: AccountsConnection; - /** Reads and enables pagination through a set of `Account`. */ - accountsByExtrinsicBlockIdAndSignerId: BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection; - /** Reads and enables pagination through a set of `Authority`. */ - authorities: AuthoritiesConnection; - /** Reads and enables pagination through a set of `CountryCode`. */ - countryCodesByAccountCreateAtBlockIdAndCountryCodeId: BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection; - /** Reads and enables pagination through a set of `Event`. */ - events: EventsConnection; - /** Reads and enables pagination through a set of `Extrinsic`. */ - extrinsics: ExtrinsicsConnection; - /** Reads and enables pagination through a set of `Extrinsic`. */ - extrinsicsByEventBlockIdAndExtrinsicId: BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection; - extrinsicsRoot?: Maybe; - hash?: Maybe; - id: Scalars['String']; - /** Reads and enables pagination through a set of `KeygenThreshold`. */ - keygenThresholds: KeygenThresholdsConnection; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - number: Scalars['BigFloat']; - parentHash?: Maybe; - /** Reads and enables pagination through a set of `ProposalCounter`. */ - proposalCounters: ProposalCountersConnection; - /** Reads and enables pagination through a set of `ProposalItem`. */ - proposalItems: ProposalItemsConnection; - /** Reads and enables pagination through a set of `ProposalItem`. */ - proposalItemsByProposalVoteBlockIdAndProposalId: BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection; - /** Reads and enables pagination through a set of `ProposalVote`. */ - proposalVotes: ProposalVotesConnection; - /** Reads and enables pagination through a set of `ProposerThreshold`. */ - proposerThresholds: ProposerThresholdsConnection; - /** Reads and enables pagination through a set of `Proposer`. */ - proposersByProposalVoteBlockIdAndVoterId: BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection; - /** Reads and enables pagination through a set of `PublicKey`. */ - publicKeys: PublicKeysConnection; - /** Reads and enables pagination through a set of `PublicKey`. */ - publicKeysBySessionBlockIdAndPublicKeyId: BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection; - /** Reads and enables pagination through a set of `Session`. */ - sessions: SessionsConnection; - /** Reads and enables pagination through a set of `SignatureThreshold`. */ - signatureThresholds: SignatureThresholdsConnection; - specVersion?: Maybe; - stateRoot?: Maybe; - timestamp?: Maybe; - /** Reads and enables pagination through a set of `UnsignedProposalsQueue`. */ - unsignedProposalsQueues: UnsignedProposalsQueuesConnection; -}; - -export type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockAccountsByCreateAtBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockAccountsByExtrinsicBlockIdAndSignerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockAuthoritiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockExtrinsicsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockKeygenThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockProposalCountersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockProposalItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockProposalItemsByProposalVoteBlockIdAndProposalIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockProposalVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockProposerThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockProposersByProposalVoteBlockIdAndVoterIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockPublicKeysArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockPublicKeysBySessionBlockIdAndPublicKeyIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockSessionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockSignatureThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type BlockUnsignedProposalsQueuesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Account` values, with data from `Account`. */ -export type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection = - { - __typename?: 'BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Account`, info from the `Account`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Account` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Account` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Account` values, with data from `Account`. */ -export type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Account` edge in the connection, with data from `Account`. */ -export type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdge = { - __typename?: 'BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdge'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByCreatorId: AccountsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Account` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Account` edge in the connection, with data from `Account`. */ -export type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdgeAccountsByCreatorIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `Account` values, with data from `Extrinsic`. */ -export type BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection = { - __typename?: 'BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Account`, info from the `Extrinsic`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Account` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Account` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Account` values, with data from `Extrinsic`. */ -export type BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Account` edge in the connection, with data from `Extrinsic`. */ -export type BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdge = { - __typename?: 'BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `Extrinsic`. */ - extrinsics: ExtrinsicsConnection; - /** The `Account` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Account` edge in the connection, with data from `Extrinsic`. */ -export type BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdgeExtrinsicsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type BlockAggregates = { - __typename?: 'BlockAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type BlockAverageAggregates = { - __typename?: 'BlockAverageAggregates'; - /** Mean average of number across the matching connection */ - number?: Maybe; -}; - -/** A connection to a list of `CountryCode` values, with data from `Account`. */ -export type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection = - { - __typename?: 'BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `CountryCode`, info from the `Account`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `CountryCode` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `CountryCode` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `CountryCode` values, with data from `Account`. */ -export type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `CountryCode` edge in the connection, with data from `Account`. */ -export type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdge = - { - __typename?: 'BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdge'; - /** Reads and enables pagination through a set of `Account`. */ - accounts: AccountsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `CountryCode` at the end of the edge. */ - node?: Maybe; - }; - -/** A `CountryCode` edge in the connection, with data from `Account`. */ -export type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdgeAccountsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type BlockDistinctCountAggregates = { - __typename?: 'BlockDistinctCountAggregates'; - /** Distinct count of extrinsicsRoot across the matching connection */ - extrinsicsRoot?: Maybe; - /** Distinct count of hash across the matching connection */ - hash?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of number across the matching connection */ - number?: Maybe; - /** Distinct count of parentHash across the matching connection */ - parentHash?: Maybe; - /** Distinct count of specVersion across the matching connection */ - specVersion?: Maybe; - /** Distinct count of stateRoot across the matching connection */ - stateRoot?: Maybe; - /** Distinct count of timestamp across the matching connection */ - timestamp?: Maybe; -}; - -/** A connection to a list of `Extrinsic` values, with data from `Event`. */ -export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection = { - __typename?: 'BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Extrinsic`, info from the `Event`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Extrinsic` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Extrinsic` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Extrinsic` values, with data from `Event`. */ -export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Extrinsic` edge in the connection, with data from `Event`. */ -export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge = { - __typename?: 'BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `Event`. */ - events: EventsConnection; - /** The `Extrinsic` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Extrinsic` edge in the connection, with data from `Event`. */ -export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdgeEventsArgs = - { - after?: InputMaybe; - before?: 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 = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `extrinsicsRoot` field. */ - extrinsicsRoot?: InputMaybe; - /** Filter by the object’s `hash` field. */ - hash?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Filter by the object’s `number` field. */ - number?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `parentHash` field. */ - parentHash?: InputMaybe; - /** Filter by the object’s `specVersion` field. */ - specVersion?: InputMaybe; - /** Filter by the object’s `stateRoot` field. */ - stateRoot?: InputMaybe; - /** Filter by the object’s `timestamp` field. */ - timestamp?: InputMaybe; -}; - -export type BlockMaxAggregates = { - __typename?: 'BlockMaxAggregates'; - /** Maximum of number across the matching connection */ - number?: Maybe; -}; - -export type BlockMinAggregates = { - __typename?: 'BlockMinAggregates'; - /** Minimum of number across the matching connection */ - number?: Maybe; -}; - -/** A connection to a list of `ProposalItem` values, with data from `ProposalVote`. */ -export type BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection = - { - __typename?: 'BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalItem`, info from the `ProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalItem` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalItem` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `ProposalItem` values, with data from `ProposalVote`. */ -export type BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `ProposalItem` edge in the connection, with data from `ProposalVote`. */ -export type BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdge = - { - __typename?: 'BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalItem` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `ProposalVote`. */ - proposalVotesByProposalId: ProposalVotesConnection; - }; - -/** A `ProposalItem` edge in the connection, with data from `ProposalVote`. */ -export type BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdgeProposalVotesByProposalIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `Proposer` values, with data from `ProposalVote`. */ -export type BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection = - { - __typename?: 'BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Proposer`, info from the `ProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Proposer` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Proposer` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Proposer` values, with data from `ProposalVote`. */ -export type BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Proposer` edge in the connection, with data from `ProposalVote`. */ -export type BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdge = { - __typename?: 'BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Proposer` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `ProposalVote`. */ - votes: ProposalVotesConnection; -}; - -/** A `Proposer` edge in the connection, with data from `ProposalVote`. */ -export type BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdgeVotesArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `PublicKey` values, with data from `Session`. */ -export type BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection = - { - __typename?: 'BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `PublicKey`, info from the `Session`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `PublicKey` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `PublicKey` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `PublicKey` values, with data from `Session`. */ -export type BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `PublicKey` edge in the connection, with data from `Session`. */ -export type BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdge = { - __typename?: 'BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `PublicKey` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `Session`. */ - sessions: SessionsConnection; -}; - -/** A `PublicKey` edge in the connection, with data from `Session`. */ -export type BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdgeSessionsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type BlockStddevPopulationAggregates = { - __typename?: 'BlockStddevPopulationAggregates'; - /** Population standard deviation of number across the matching connection */ - number?: Maybe; -}; - -export type BlockStddevSampleAggregates = { - __typename?: 'BlockStddevSampleAggregates'; - /** Sample standard deviation of number across the matching connection */ - number?: Maybe; -}; - -export type BlockSumAggregates = { - __typename?: 'BlockSumAggregates'; - /** Sum of number across the matching connection */ - number: Scalars['BigFloat']; -}; - -export type BlockVariancePopulationAggregates = { - __typename?: 'BlockVariancePopulationAggregates'; - /** Population variance of number across the matching connection */ - number?: Maybe; -}; - -export type BlockVarianceSampleAggregates = { - __typename?: 'BlockVarianceSampleAggregates'; - /** Sample variance of number across the matching connection */ - number?: Maybe; -}; - -/** A connection to a list of `Block` values. */ -export type BlocksConnection = { - __typename?: 'BlocksConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block` and 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']; -}; - -/** A connection to a list of `Block` values. */ -export type BlocksConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Block` edge in the connection. */ -export type BlocksEdge = { - __typename?: 'BlocksEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Block` for usage during aggregation. */ -export enum BlocksGroupBy { - ExtrinsicsRoot = 'EXTRINSICS_ROOT', - Hash = 'HASH', - ParentHash = 'PARENT_HASH', - SpecVersion = 'SPEC_VERSION', - StateRoot = 'STATE_ROOT', - Timestamp = 'TIMESTAMP', - TimestampTruncatedToDay = 'TIMESTAMP_TRUNCATED_TO_DAY', - TimestampTruncatedToHour = 'TIMESTAMP_TRUNCATED_TO_HOUR', -} - -export type BlocksHavingAverageInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingDistinctCountInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -/** Conditions for `Block` aggregates. */ -export type BlocksHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type BlocksHavingMaxInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingMinInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingStddevPopulationInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingStddevSampleInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingSumInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingVariancePopulationInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type BlocksHavingVarianceSampleInput = { - number?: InputMaybe; - timestamp?: InputMaybe; -}; - -/** Methods to use when ordering `Block`. */ -export enum BlocksOrderBy { - AccountsByCreateAtBlockIdAverageCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdAverageCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdAverageCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATED_AT_ASC', - AccountsByCreateAtBlockIdAverageCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATED_AT_DESC', - AccountsByCreateAtBlockIdAverageCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdAverageCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdAverageCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdAverageCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdAverageDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_DISPLAY_ASC', - AccountsByCreateAtBlockIdAverageDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_DISPLAY_DESC', - AccountsByCreateAtBlockIdAverageEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_EMAIL_ASC', - AccountsByCreateAtBlockIdAverageEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_EMAIL_DESC', - AccountsByCreateAtBlockIdAverageIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_ID_ASC', - AccountsByCreateAtBlockIdAverageIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_ID_DESC', - AccountsByCreateAtBlockIdAverageImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_IMAGE_ASC', - AccountsByCreateAtBlockIdAverageImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_IMAGE_DESC', - AccountsByCreateAtBlockIdAverageLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_LEGAL_ASC', - AccountsByCreateAtBlockIdAverageLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_LEGAL_DESC', - AccountsByCreateAtBlockIdAveragePgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdAveragePgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdAverageRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_RIOT_ASC', - AccountsByCreateAtBlockIdAverageRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_RIOT_DESC', - AccountsByCreateAtBlockIdAverageTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_TWITTER_ASC', - AccountsByCreateAtBlockIdAverageTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_TWITTER_DESC', - AccountsByCreateAtBlockIdAverageWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_WEB_ASC', - AccountsByCreateAtBlockIdAverageWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_WEB_DESC', - AccountsByCreateAtBlockIdCountAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_COUNT_ASC', - AccountsByCreateAtBlockIdCountDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_COUNT_DESC', - AccountsByCreateAtBlockIdDistinctCountCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdDistinctCountCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdDistinctCountCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', - AccountsByCreateAtBlockIdDistinctCountCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', - AccountsByCreateAtBlockIdDistinctCountCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdDistinctCountCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdDistinctCountCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdDistinctCountCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdDistinctCountDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_DISPLAY_ASC', - AccountsByCreateAtBlockIdDistinctCountDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_DISPLAY_DESC', - AccountsByCreateAtBlockIdDistinctCountEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_EMAIL_ASC', - AccountsByCreateAtBlockIdDistinctCountEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_EMAIL_DESC', - AccountsByCreateAtBlockIdDistinctCountIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_ID_ASC', - AccountsByCreateAtBlockIdDistinctCountIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_ID_DESC', - AccountsByCreateAtBlockIdDistinctCountImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_IMAGE_ASC', - AccountsByCreateAtBlockIdDistinctCountImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_IMAGE_DESC', - AccountsByCreateAtBlockIdDistinctCountLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_LEGAL_ASC', - AccountsByCreateAtBlockIdDistinctCountLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_LEGAL_DESC', - AccountsByCreateAtBlockIdDistinctCountPgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdDistinctCountPgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdDistinctCountRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_RIOT_ASC', - AccountsByCreateAtBlockIdDistinctCountRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_RIOT_DESC', - AccountsByCreateAtBlockIdDistinctCountTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_TWITTER_ASC', - AccountsByCreateAtBlockIdDistinctCountTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_TWITTER_DESC', - AccountsByCreateAtBlockIdDistinctCountWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_WEB_ASC', - AccountsByCreateAtBlockIdDistinctCountWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_WEB_DESC', - AccountsByCreateAtBlockIdMaxCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdMaxCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdMaxCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATED_AT_ASC', - AccountsByCreateAtBlockIdMaxCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATED_AT_DESC', - AccountsByCreateAtBlockIdMaxCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdMaxCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdMaxCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdMaxCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdMaxDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_DISPLAY_ASC', - AccountsByCreateAtBlockIdMaxDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_DISPLAY_DESC', - AccountsByCreateAtBlockIdMaxEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_EMAIL_ASC', - AccountsByCreateAtBlockIdMaxEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_EMAIL_DESC', - AccountsByCreateAtBlockIdMaxIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_ID_ASC', - AccountsByCreateAtBlockIdMaxIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_ID_DESC', - AccountsByCreateAtBlockIdMaxImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_IMAGE_ASC', - AccountsByCreateAtBlockIdMaxImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_IMAGE_DESC', - AccountsByCreateAtBlockIdMaxLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_LEGAL_ASC', - AccountsByCreateAtBlockIdMaxLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_LEGAL_DESC', - AccountsByCreateAtBlockIdMaxPgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdMaxPgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdMaxRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_RIOT_ASC', - AccountsByCreateAtBlockIdMaxRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_RIOT_DESC', - AccountsByCreateAtBlockIdMaxTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_TWITTER_ASC', - AccountsByCreateAtBlockIdMaxTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_TWITTER_DESC', - AccountsByCreateAtBlockIdMaxWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_WEB_ASC', - AccountsByCreateAtBlockIdMaxWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_WEB_DESC', - AccountsByCreateAtBlockIdMinCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdMinCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdMinCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATED_AT_ASC', - AccountsByCreateAtBlockIdMinCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATED_AT_DESC', - AccountsByCreateAtBlockIdMinCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdMinCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdMinCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdMinCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdMinDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_DISPLAY_ASC', - AccountsByCreateAtBlockIdMinDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_DISPLAY_DESC', - AccountsByCreateAtBlockIdMinEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_EMAIL_ASC', - AccountsByCreateAtBlockIdMinEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_EMAIL_DESC', - AccountsByCreateAtBlockIdMinIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_ID_ASC', - AccountsByCreateAtBlockIdMinIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_ID_DESC', - AccountsByCreateAtBlockIdMinImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_IMAGE_ASC', - AccountsByCreateAtBlockIdMinImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_IMAGE_DESC', - AccountsByCreateAtBlockIdMinLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_LEGAL_ASC', - AccountsByCreateAtBlockIdMinLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_LEGAL_DESC', - AccountsByCreateAtBlockIdMinPgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdMinPgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdMinRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_RIOT_ASC', - AccountsByCreateAtBlockIdMinRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_RIOT_DESC', - AccountsByCreateAtBlockIdMinTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_TWITTER_ASC', - AccountsByCreateAtBlockIdMinTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_TWITTER_DESC', - AccountsByCreateAtBlockIdMinWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_WEB_ASC', - AccountsByCreateAtBlockIdMinWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_WEB_DESC', - AccountsByCreateAtBlockIdStddevPopulationCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdStddevPopulationCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdStddevPopulationCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', - AccountsByCreateAtBlockIdStddevPopulationCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', - AccountsByCreateAtBlockIdStddevPopulationCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdStddevPopulationCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdStddevPopulationCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdStddevPopulationCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdStddevPopulationDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_DISPLAY_ASC', - AccountsByCreateAtBlockIdStddevPopulationDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_DISPLAY_DESC', - AccountsByCreateAtBlockIdStddevPopulationEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_EMAIL_ASC', - AccountsByCreateAtBlockIdStddevPopulationEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_EMAIL_DESC', - AccountsByCreateAtBlockIdStddevPopulationIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_ID_ASC', - AccountsByCreateAtBlockIdStddevPopulationIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_ID_DESC', - AccountsByCreateAtBlockIdStddevPopulationImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_IMAGE_ASC', - AccountsByCreateAtBlockIdStddevPopulationImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_IMAGE_DESC', - AccountsByCreateAtBlockIdStddevPopulationLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_LEGAL_ASC', - AccountsByCreateAtBlockIdStddevPopulationLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_LEGAL_DESC', - AccountsByCreateAtBlockIdStddevPopulationPgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdStddevPopulationPgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdStddevPopulationRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_RIOT_ASC', - AccountsByCreateAtBlockIdStddevPopulationRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_RIOT_DESC', - AccountsByCreateAtBlockIdStddevPopulationTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_TWITTER_ASC', - AccountsByCreateAtBlockIdStddevPopulationTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_TWITTER_DESC', - AccountsByCreateAtBlockIdStddevPopulationWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_WEB_ASC', - AccountsByCreateAtBlockIdStddevPopulationWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_WEB_DESC', - AccountsByCreateAtBlockIdStddevSampleCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdStddevSampleCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdStddevSampleCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', - AccountsByCreateAtBlockIdStddevSampleCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', - AccountsByCreateAtBlockIdStddevSampleCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdStddevSampleCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdStddevSampleCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdStddevSampleCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdStddevSampleDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_DISPLAY_ASC', - AccountsByCreateAtBlockIdStddevSampleDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_DISPLAY_DESC', - AccountsByCreateAtBlockIdStddevSampleEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_EMAIL_ASC', - AccountsByCreateAtBlockIdStddevSampleEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_EMAIL_DESC', - AccountsByCreateAtBlockIdStddevSampleIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', - AccountsByCreateAtBlockIdStddevSampleIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', - AccountsByCreateAtBlockIdStddevSampleImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_IMAGE_ASC', - AccountsByCreateAtBlockIdStddevSampleImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_IMAGE_DESC', - AccountsByCreateAtBlockIdStddevSampleLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_LEGAL_ASC', - AccountsByCreateAtBlockIdStddevSampleLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_LEGAL_DESC', - AccountsByCreateAtBlockIdStddevSamplePgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdStddevSamplePgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdStddevSampleRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_RIOT_ASC', - AccountsByCreateAtBlockIdStddevSampleRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_RIOT_DESC', - AccountsByCreateAtBlockIdStddevSampleTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_TWITTER_ASC', - AccountsByCreateAtBlockIdStddevSampleTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_TWITTER_DESC', - AccountsByCreateAtBlockIdStddevSampleWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_WEB_ASC', - AccountsByCreateAtBlockIdStddevSampleWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_WEB_DESC', - AccountsByCreateAtBlockIdSumCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdSumCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdSumCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATED_AT_ASC', - AccountsByCreateAtBlockIdSumCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATED_AT_DESC', - AccountsByCreateAtBlockIdSumCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdSumCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdSumCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdSumCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdSumDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_DISPLAY_ASC', - AccountsByCreateAtBlockIdSumDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_DISPLAY_DESC', - AccountsByCreateAtBlockIdSumEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_EMAIL_ASC', - AccountsByCreateAtBlockIdSumEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_EMAIL_DESC', - AccountsByCreateAtBlockIdSumIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_ID_ASC', - AccountsByCreateAtBlockIdSumIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_ID_DESC', - AccountsByCreateAtBlockIdSumImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_IMAGE_ASC', - AccountsByCreateAtBlockIdSumImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_IMAGE_DESC', - AccountsByCreateAtBlockIdSumLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_LEGAL_ASC', - AccountsByCreateAtBlockIdSumLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_LEGAL_DESC', - AccountsByCreateAtBlockIdSumPgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdSumPgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdSumRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_RIOT_ASC', - AccountsByCreateAtBlockIdSumRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_RIOT_DESC', - AccountsByCreateAtBlockIdSumTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_TWITTER_ASC', - AccountsByCreateAtBlockIdSumTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_TWITTER_DESC', - AccountsByCreateAtBlockIdSumWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_WEB_ASC', - AccountsByCreateAtBlockIdSumWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_WEB_DESC', - AccountsByCreateAtBlockIdVariancePopulationCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdVariancePopulationCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdVariancePopulationCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', - AccountsByCreateAtBlockIdVariancePopulationCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', - AccountsByCreateAtBlockIdVariancePopulationCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdVariancePopulationCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdVariancePopulationCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdVariancePopulationCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdVariancePopulationDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_DISPLAY_ASC', - AccountsByCreateAtBlockIdVariancePopulationDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_DISPLAY_DESC', - AccountsByCreateAtBlockIdVariancePopulationEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_EMAIL_ASC', - AccountsByCreateAtBlockIdVariancePopulationEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_EMAIL_DESC', - AccountsByCreateAtBlockIdVariancePopulationIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', - AccountsByCreateAtBlockIdVariancePopulationIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', - AccountsByCreateAtBlockIdVariancePopulationImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_IMAGE_ASC', - AccountsByCreateAtBlockIdVariancePopulationImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_IMAGE_DESC', - AccountsByCreateAtBlockIdVariancePopulationLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_LEGAL_ASC', - AccountsByCreateAtBlockIdVariancePopulationLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_LEGAL_DESC', - AccountsByCreateAtBlockIdVariancePopulationPgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdVariancePopulationPgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdVariancePopulationRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_RIOT_ASC', - AccountsByCreateAtBlockIdVariancePopulationRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_RIOT_DESC', - AccountsByCreateAtBlockIdVariancePopulationTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_TWITTER_ASC', - AccountsByCreateAtBlockIdVariancePopulationTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_TWITTER_DESC', - AccountsByCreateAtBlockIdVariancePopulationWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_WEB_ASC', - AccountsByCreateAtBlockIdVariancePopulationWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_WEB_DESC', - AccountsByCreateAtBlockIdVarianceSampleCountryCodeIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC', - AccountsByCreateAtBlockIdVarianceSampleCountryCodeIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC', - AccountsByCreateAtBlockIdVarianceSampleCreatedAtAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', - AccountsByCreateAtBlockIdVarianceSampleCreatedAtDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', - AccountsByCreateAtBlockIdVarianceSampleCreateAtBlockIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC', - AccountsByCreateAtBlockIdVarianceSampleCreateAtBlockIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC', - AccountsByCreateAtBlockIdVarianceSampleCreatorIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', - AccountsByCreateAtBlockIdVarianceSampleCreatorIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', - AccountsByCreateAtBlockIdVarianceSampleDisplayAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_DISPLAY_ASC', - AccountsByCreateAtBlockIdVarianceSampleDisplayDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_DISPLAY_DESC', - AccountsByCreateAtBlockIdVarianceSampleEmailAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_EMAIL_ASC', - AccountsByCreateAtBlockIdVarianceSampleEmailDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_EMAIL_DESC', - AccountsByCreateAtBlockIdVarianceSampleIdAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', - AccountsByCreateAtBlockIdVarianceSampleIdDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', - AccountsByCreateAtBlockIdVarianceSampleImageAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_IMAGE_ASC', - AccountsByCreateAtBlockIdVarianceSampleImageDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_IMAGE_DESC', - AccountsByCreateAtBlockIdVarianceSampleLegalAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_LEGAL_ASC', - AccountsByCreateAtBlockIdVarianceSampleLegalDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_LEGAL_DESC', - AccountsByCreateAtBlockIdVarianceSamplePgpFingerprintAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC', - AccountsByCreateAtBlockIdVarianceSamplePgpFingerprintDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC', - AccountsByCreateAtBlockIdVarianceSampleRiotAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_RIOT_ASC', - AccountsByCreateAtBlockIdVarianceSampleRiotDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_RIOT_DESC', - AccountsByCreateAtBlockIdVarianceSampleTwitterAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_TWITTER_ASC', - AccountsByCreateAtBlockIdVarianceSampleTwitterDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_TWITTER_DESC', - AccountsByCreateAtBlockIdVarianceSampleWebAsc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_WEB_ASC', - AccountsByCreateAtBlockIdVarianceSampleWebDesc = 'ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_WEB_DESC', - AuthoritiesAverageBlockIdAsc = 'AUTHORITIES_AVERAGE_BLOCK_ID_ASC', - AuthoritiesAverageBlockIdDesc = 'AUTHORITIES_AVERAGE_BLOCK_ID_DESC', - AuthoritiesAverageCurrentAsc = 'AUTHORITIES_AVERAGE_CURRENT_ASC', - AuthoritiesAverageCurrentDesc = 'AUTHORITIES_AVERAGE_CURRENT_DESC', - AuthoritiesAverageIdAsc = 'AUTHORITIES_AVERAGE_ID_ASC', - AuthoritiesAverageIdDesc = 'AUTHORITIES_AVERAGE_ID_DESC', - AuthoritiesAverageNextAsc = 'AUTHORITIES_AVERAGE_NEXT_ASC', - AuthoritiesAverageNextDesc = 'AUTHORITIES_AVERAGE_NEXT_DESC', - AuthoritiesCountAsc = 'AUTHORITIES_COUNT_ASC', - AuthoritiesCountDesc = 'AUTHORITIES_COUNT_DESC', - AuthoritiesDistinctCountBlockIdAsc = 'AUTHORITIES_DISTINCT_COUNT_BLOCK_ID_ASC', - AuthoritiesDistinctCountBlockIdDesc = 'AUTHORITIES_DISTINCT_COUNT_BLOCK_ID_DESC', - AuthoritiesDistinctCountCurrentAsc = 'AUTHORITIES_DISTINCT_COUNT_CURRENT_ASC', - AuthoritiesDistinctCountCurrentDesc = 'AUTHORITIES_DISTINCT_COUNT_CURRENT_DESC', - AuthoritiesDistinctCountIdAsc = 'AUTHORITIES_DISTINCT_COUNT_ID_ASC', - AuthoritiesDistinctCountIdDesc = 'AUTHORITIES_DISTINCT_COUNT_ID_DESC', - AuthoritiesDistinctCountNextAsc = 'AUTHORITIES_DISTINCT_COUNT_NEXT_ASC', - AuthoritiesDistinctCountNextDesc = 'AUTHORITIES_DISTINCT_COUNT_NEXT_DESC', - AuthoritiesMaxBlockIdAsc = 'AUTHORITIES_MAX_BLOCK_ID_ASC', - AuthoritiesMaxBlockIdDesc = 'AUTHORITIES_MAX_BLOCK_ID_DESC', - AuthoritiesMaxCurrentAsc = 'AUTHORITIES_MAX_CURRENT_ASC', - AuthoritiesMaxCurrentDesc = 'AUTHORITIES_MAX_CURRENT_DESC', - AuthoritiesMaxIdAsc = 'AUTHORITIES_MAX_ID_ASC', - AuthoritiesMaxIdDesc = 'AUTHORITIES_MAX_ID_DESC', - AuthoritiesMaxNextAsc = 'AUTHORITIES_MAX_NEXT_ASC', - AuthoritiesMaxNextDesc = 'AUTHORITIES_MAX_NEXT_DESC', - AuthoritiesMinBlockIdAsc = 'AUTHORITIES_MIN_BLOCK_ID_ASC', - AuthoritiesMinBlockIdDesc = 'AUTHORITIES_MIN_BLOCK_ID_DESC', - AuthoritiesMinCurrentAsc = 'AUTHORITIES_MIN_CURRENT_ASC', - AuthoritiesMinCurrentDesc = 'AUTHORITIES_MIN_CURRENT_DESC', - AuthoritiesMinIdAsc = 'AUTHORITIES_MIN_ID_ASC', - AuthoritiesMinIdDesc = 'AUTHORITIES_MIN_ID_DESC', - AuthoritiesMinNextAsc = 'AUTHORITIES_MIN_NEXT_ASC', - AuthoritiesMinNextDesc = 'AUTHORITIES_MIN_NEXT_DESC', - AuthoritiesStddevPopulationBlockIdAsc = 'AUTHORITIES_STDDEV_POPULATION_BLOCK_ID_ASC', - AuthoritiesStddevPopulationBlockIdDesc = 'AUTHORITIES_STDDEV_POPULATION_BLOCK_ID_DESC', - AuthoritiesStddevPopulationCurrentAsc = 'AUTHORITIES_STDDEV_POPULATION_CURRENT_ASC', - AuthoritiesStddevPopulationCurrentDesc = 'AUTHORITIES_STDDEV_POPULATION_CURRENT_DESC', - AuthoritiesStddevPopulationIdAsc = 'AUTHORITIES_STDDEV_POPULATION_ID_ASC', - AuthoritiesStddevPopulationIdDesc = 'AUTHORITIES_STDDEV_POPULATION_ID_DESC', - AuthoritiesStddevPopulationNextAsc = 'AUTHORITIES_STDDEV_POPULATION_NEXT_ASC', - AuthoritiesStddevPopulationNextDesc = 'AUTHORITIES_STDDEV_POPULATION_NEXT_DESC', - AuthoritiesStddevSampleBlockIdAsc = 'AUTHORITIES_STDDEV_SAMPLE_BLOCK_ID_ASC', - AuthoritiesStddevSampleBlockIdDesc = 'AUTHORITIES_STDDEV_SAMPLE_BLOCK_ID_DESC', - AuthoritiesStddevSampleCurrentAsc = 'AUTHORITIES_STDDEV_SAMPLE_CURRENT_ASC', - AuthoritiesStddevSampleCurrentDesc = 'AUTHORITIES_STDDEV_SAMPLE_CURRENT_DESC', - AuthoritiesStddevSampleIdAsc = 'AUTHORITIES_STDDEV_SAMPLE_ID_ASC', - AuthoritiesStddevSampleIdDesc = 'AUTHORITIES_STDDEV_SAMPLE_ID_DESC', - AuthoritiesStddevSampleNextAsc = 'AUTHORITIES_STDDEV_SAMPLE_NEXT_ASC', - AuthoritiesStddevSampleNextDesc = 'AUTHORITIES_STDDEV_SAMPLE_NEXT_DESC', - AuthoritiesSumBlockIdAsc = 'AUTHORITIES_SUM_BLOCK_ID_ASC', - AuthoritiesSumBlockIdDesc = 'AUTHORITIES_SUM_BLOCK_ID_DESC', - AuthoritiesSumCurrentAsc = 'AUTHORITIES_SUM_CURRENT_ASC', - AuthoritiesSumCurrentDesc = 'AUTHORITIES_SUM_CURRENT_DESC', - AuthoritiesSumIdAsc = 'AUTHORITIES_SUM_ID_ASC', - AuthoritiesSumIdDesc = 'AUTHORITIES_SUM_ID_DESC', - AuthoritiesSumNextAsc = 'AUTHORITIES_SUM_NEXT_ASC', - AuthoritiesSumNextDesc = 'AUTHORITIES_SUM_NEXT_DESC', - AuthoritiesVariancePopulationBlockIdAsc = 'AUTHORITIES_VARIANCE_POPULATION_BLOCK_ID_ASC', - AuthoritiesVariancePopulationBlockIdDesc = 'AUTHORITIES_VARIANCE_POPULATION_BLOCK_ID_DESC', - AuthoritiesVariancePopulationCurrentAsc = 'AUTHORITIES_VARIANCE_POPULATION_CURRENT_ASC', - AuthoritiesVariancePopulationCurrentDesc = 'AUTHORITIES_VARIANCE_POPULATION_CURRENT_DESC', - AuthoritiesVariancePopulationIdAsc = 'AUTHORITIES_VARIANCE_POPULATION_ID_ASC', - AuthoritiesVariancePopulationIdDesc = 'AUTHORITIES_VARIANCE_POPULATION_ID_DESC', - AuthoritiesVariancePopulationNextAsc = 'AUTHORITIES_VARIANCE_POPULATION_NEXT_ASC', - AuthoritiesVariancePopulationNextDesc = 'AUTHORITIES_VARIANCE_POPULATION_NEXT_DESC', - AuthoritiesVarianceSampleBlockIdAsc = 'AUTHORITIES_VARIANCE_SAMPLE_BLOCK_ID_ASC', - AuthoritiesVarianceSampleBlockIdDesc = 'AUTHORITIES_VARIANCE_SAMPLE_BLOCK_ID_DESC', - AuthoritiesVarianceSampleCurrentAsc = 'AUTHORITIES_VARIANCE_SAMPLE_CURRENT_ASC', - AuthoritiesVarianceSampleCurrentDesc = 'AUTHORITIES_VARIANCE_SAMPLE_CURRENT_DESC', - AuthoritiesVarianceSampleIdAsc = 'AUTHORITIES_VARIANCE_SAMPLE_ID_ASC', - AuthoritiesVarianceSampleIdDesc = 'AUTHORITIES_VARIANCE_SAMPLE_ID_DESC', - AuthoritiesVarianceSampleNextAsc = 'AUTHORITIES_VARIANCE_SAMPLE_NEXT_ASC', - AuthoritiesVarianceSampleNextDesc = 'AUTHORITIES_VARIANCE_SAMPLE_NEXT_DESC', - EventsAverageArgumentsAsc = 'EVENTS_AVERAGE_ARGUMENTS_ASC', - EventsAverageArgumentsDesc = 'EVENTS_AVERAGE_ARGUMENTS_DESC', - EventsAverageBlockIdAsc = 'EVENTS_AVERAGE_BLOCK_ID_ASC', - EventsAverageBlockIdDesc = 'EVENTS_AVERAGE_BLOCK_ID_DESC', - EventsAverageBlockNumberAsc = 'EVENTS_AVERAGE_BLOCK_NUMBER_ASC', - EventsAverageBlockNumberDesc = 'EVENTS_AVERAGE_BLOCK_NUMBER_DESC', - EventsAverageDataAsc = 'EVENTS_AVERAGE_DATA_ASC', - EventsAverageDataDesc = 'EVENTS_AVERAGE_DATA_DESC', - EventsAverageDocsAsc = 'EVENTS_AVERAGE_DOCS_ASC', - EventsAverageDocsDesc = 'EVENTS_AVERAGE_DOCS_DESC', - EventsAverageExtrinsicIdAsc = 'EVENTS_AVERAGE_EXTRINSIC_ID_ASC', - EventsAverageExtrinsicIdDesc = 'EVENTS_AVERAGE_EXTRINSIC_ID_DESC', - EventsAverageIdAsc = 'EVENTS_AVERAGE_ID_ASC', - EventsAverageIdDesc = 'EVENTS_AVERAGE_ID_DESC', - EventsAverageIndexAsc = 'EVENTS_AVERAGE_INDEX_ASC', - EventsAverageIndexDesc = 'EVENTS_AVERAGE_INDEX_DESC', - EventsAverageMethodAsc = 'EVENTS_AVERAGE_METHOD_ASC', - EventsAverageMethodDesc = 'EVENTS_AVERAGE_METHOD_DESC', - EventsAverageModuleAsc = 'EVENTS_AVERAGE_MODULE_ASC', - EventsAverageModuleDesc = 'EVENTS_AVERAGE_MODULE_DESC', - EventsAverageTimestampAsc = 'EVENTS_AVERAGE_TIMESTAMP_ASC', - EventsAverageTimestampDesc = 'EVENTS_AVERAGE_TIMESTAMP_DESC', - EventsCountAsc = 'EVENTS_COUNT_ASC', - EventsCountDesc = 'EVENTS_COUNT_DESC', - EventsDistinctCountArgumentsAsc = 'EVENTS_DISTINCT_COUNT_ARGUMENTS_ASC', - EventsDistinctCountArgumentsDesc = 'EVENTS_DISTINCT_COUNT_ARGUMENTS_DESC', - EventsDistinctCountBlockIdAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC', - EventsDistinctCountBlockIdDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC', - EventsDistinctCountBlockNumberAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - EventsDistinctCountBlockNumberDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - EventsDistinctCountDataAsc = 'EVENTS_DISTINCT_COUNT_DATA_ASC', - EventsDistinctCountDataDesc = 'EVENTS_DISTINCT_COUNT_DATA_DESC', - EventsDistinctCountDocsAsc = 'EVENTS_DISTINCT_COUNT_DOCS_ASC', - EventsDistinctCountDocsDesc = 'EVENTS_DISTINCT_COUNT_DOCS_DESC', - EventsDistinctCountExtrinsicIdAsc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC', - EventsDistinctCountExtrinsicIdDesc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC', - EventsDistinctCountIdAsc = 'EVENTS_DISTINCT_COUNT_ID_ASC', - EventsDistinctCountIdDesc = 'EVENTS_DISTINCT_COUNT_ID_DESC', - EventsDistinctCountIndexAsc = 'EVENTS_DISTINCT_COUNT_INDEX_ASC', - EventsDistinctCountIndexDesc = 'EVENTS_DISTINCT_COUNT_INDEX_DESC', - EventsDistinctCountMethodAsc = 'EVENTS_DISTINCT_COUNT_METHOD_ASC', - EventsDistinctCountMethodDesc = 'EVENTS_DISTINCT_COUNT_METHOD_DESC', - EventsDistinctCountModuleAsc = 'EVENTS_DISTINCT_COUNT_MODULE_ASC', - EventsDistinctCountModuleDesc = 'EVENTS_DISTINCT_COUNT_MODULE_DESC', - EventsDistinctCountTimestampAsc = 'EVENTS_DISTINCT_COUNT_TIMESTAMP_ASC', - EventsDistinctCountTimestampDesc = 'EVENTS_DISTINCT_COUNT_TIMESTAMP_DESC', - EventsMaxArgumentsAsc = 'EVENTS_MAX_ARGUMENTS_ASC', - EventsMaxArgumentsDesc = 'EVENTS_MAX_ARGUMENTS_DESC', - EventsMaxBlockIdAsc = 'EVENTS_MAX_BLOCK_ID_ASC', - EventsMaxBlockIdDesc = 'EVENTS_MAX_BLOCK_ID_DESC', - EventsMaxBlockNumberAsc = 'EVENTS_MAX_BLOCK_NUMBER_ASC', - EventsMaxBlockNumberDesc = 'EVENTS_MAX_BLOCK_NUMBER_DESC', - EventsMaxDataAsc = 'EVENTS_MAX_DATA_ASC', - EventsMaxDataDesc = 'EVENTS_MAX_DATA_DESC', - EventsMaxDocsAsc = 'EVENTS_MAX_DOCS_ASC', - EventsMaxDocsDesc = 'EVENTS_MAX_DOCS_DESC', - EventsMaxExtrinsicIdAsc = 'EVENTS_MAX_EXTRINSIC_ID_ASC', - EventsMaxExtrinsicIdDesc = 'EVENTS_MAX_EXTRINSIC_ID_DESC', - EventsMaxIdAsc = 'EVENTS_MAX_ID_ASC', - EventsMaxIdDesc = 'EVENTS_MAX_ID_DESC', - EventsMaxIndexAsc = 'EVENTS_MAX_INDEX_ASC', - EventsMaxIndexDesc = 'EVENTS_MAX_INDEX_DESC', - EventsMaxMethodAsc = 'EVENTS_MAX_METHOD_ASC', - EventsMaxMethodDesc = 'EVENTS_MAX_METHOD_DESC', - EventsMaxModuleAsc = 'EVENTS_MAX_MODULE_ASC', - EventsMaxModuleDesc = 'EVENTS_MAX_MODULE_DESC', - EventsMaxTimestampAsc = 'EVENTS_MAX_TIMESTAMP_ASC', - EventsMaxTimestampDesc = 'EVENTS_MAX_TIMESTAMP_DESC', - EventsMinArgumentsAsc = 'EVENTS_MIN_ARGUMENTS_ASC', - EventsMinArgumentsDesc = 'EVENTS_MIN_ARGUMENTS_DESC', - EventsMinBlockIdAsc = 'EVENTS_MIN_BLOCK_ID_ASC', - EventsMinBlockIdDesc = 'EVENTS_MIN_BLOCK_ID_DESC', - EventsMinBlockNumberAsc = 'EVENTS_MIN_BLOCK_NUMBER_ASC', - EventsMinBlockNumberDesc = 'EVENTS_MIN_BLOCK_NUMBER_DESC', - EventsMinDataAsc = 'EVENTS_MIN_DATA_ASC', - EventsMinDataDesc = 'EVENTS_MIN_DATA_DESC', - EventsMinDocsAsc = 'EVENTS_MIN_DOCS_ASC', - EventsMinDocsDesc = 'EVENTS_MIN_DOCS_DESC', - EventsMinExtrinsicIdAsc = 'EVENTS_MIN_EXTRINSIC_ID_ASC', - EventsMinExtrinsicIdDesc = 'EVENTS_MIN_EXTRINSIC_ID_DESC', - EventsMinIdAsc = 'EVENTS_MIN_ID_ASC', - EventsMinIdDesc = 'EVENTS_MIN_ID_DESC', - EventsMinIndexAsc = 'EVENTS_MIN_INDEX_ASC', - EventsMinIndexDesc = 'EVENTS_MIN_INDEX_DESC', - EventsMinMethodAsc = 'EVENTS_MIN_METHOD_ASC', - EventsMinMethodDesc = 'EVENTS_MIN_METHOD_DESC', - EventsMinModuleAsc = 'EVENTS_MIN_MODULE_ASC', - EventsMinModuleDesc = 'EVENTS_MIN_MODULE_DESC', - EventsMinTimestampAsc = 'EVENTS_MIN_TIMESTAMP_ASC', - EventsMinTimestampDesc = 'EVENTS_MIN_TIMESTAMP_DESC', - EventsStddevPopulationArgumentsAsc = 'EVENTS_STDDEV_POPULATION_ARGUMENTS_ASC', - EventsStddevPopulationArgumentsDesc = 'EVENTS_STDDEV_POPULATION_ARGUMENTS_DESC', - EventsStddevPopulationBlockIdAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC', - EventsStddevPopulationBlockIdDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC', - EventsStddevPopulationBlockNumberAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - EventsStddevPopulationBlockNumberDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - EventsStddevPopulationDataAsc = 'EVENTS_STDDEV_POPULATION_DATA_ASC', - EventsStddevPopulationDataDesc = 'EVENTS_STDDEV_POPULATION_DATA_DESC', - EventsStddevPopulationDocsAsc = 'EVENTS_STDDEV_POPULATION_DOCS_ASC', - EventsStddevPopulationDocsDesc = 'EVENTS_STDDEV_POPULATION_DOCS_DESC', - EventsStddevPopulationExtrinsicIdAsc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC', - EventsStddevPopulationExtrinsicIdDesc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC', - EventsStddevPopulationIdAsc = 'EVENTS_STDDEV_POPULATION_ID_ASC', - EventsStddevPopulationIdDesc = 'EVENTS_STDDEV_POPULATION_ID_DESC', - EventsStddevPopulationIndexAsc = 'EVENTS_STDDEV_POPULATION_INDEX_ASC', - EventsStddevPopulationIndexDesc = 'EVENTS_STDDEV_POPULATION_INDEX_DESC', - EventsStddevPopulationMethodAsc = 'EVENTS_STDDEV_POPULATION_METHOD_ASC', - EventsStddevPopulationMethodDesc = 'EVENTS_STDDEV_POPULATION_METHOD_DESC', - EventsStddevPopulationModuleAsc = 'EVENTS_STDDEV_POPULATION_MODULE_ASC', - EventsStddevPopulationModuleDesc = 'EVENTS_STDDEV_POPULATION_MODULE_DESC', - EventsStddevPopulationTimestampAsc = 'EVENTS_STDDEV_POPULATION_TIMESTAMP_ASC', - EventsStddevPopulationTimestampDesc = 'EVENTS_STDDEV_POPULATION_TIMESTAMP_DESC', - EventsStddevSampleArgumentsAsc = 'EVENTS_STDDEV_SAMPLE_ARGUMENTS_ASC', - EventsStddevSampleArgumentsDesc = 'EVENTS_STDDEV_SAMPLE_ARGUMENTS_DESC', - EventsStddevSampleBlockIdAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC', - EventsStddevSampleBlockIdDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC', - EventsStddevSampleBlockNumberAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - EventsStddevSampleBlockNumberDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - EventsStddevSampleDataAsc = 'EVENTS_STDDEV_SAMPLE_DATA_ASC', - EventsStddevSampleDataDesc = 'EVENTS_STDDEV_SAMPLE_DATA_DESC', - EventsStddevSampleDocsAsc = 'EVENTS_STDDEV_SAMPLE_DOCS_ASC', - EventsStddevSampleDocsDesc = 'EVENTS_STDDEV_SAMPLE_DOCS_DESC', - EventsStddevSampleExtrinsicIdAsc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', - EventsStddevSampleExtrinsicIdDesc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', - EventsStddevSampleIdAsc = 'EVENTS_STDDEV_SAMPLE_ID_ASC', - EventsStddevSampleIdDesc = 'EVENTS_STDDEV_SAMPLE_ID_DESC', - EventsStddevSampleIndexAsc = 'EVENTS_STDDEV_SAMPLE_INDEX_ASC', - EventsStddevSampleIndexDesc = 'EVENTS_STDDEV_SAMPLE_INDEX_DESC', - EventsStddevSampleMethodAsc = 'EVENTS_STDDEV_SAMPLE_METHOD_ASC', - EventsStddevSampleMethodDesc = 'EVENTS_STDDEV_SAMPLE_METHOD_DESC', - EventsStddevSampleModuleAsc = 'EVENTS_STDDEV_SAMPLE_MODULE_ASC', - EventsStddevSampleModuleDesc = 'EVENTS_STDDEV_SAMPLE_MODULE_DESC', - EventsStddevSampleTimestampAsc = 'EVENTS_STDDEV_SAMPLE_TIMESTAMP_ASC', - EventsStddevSampleTimestampDesc = 'EVENTS_STDDEV_SAMPLE_TIMESTAMP_DESC', - EventsSumArgumentsAsc = 'EVENTS_SUM_ARGUMENTS_ASC', - EventsSumArgumentsDesc = 'EVENTS_SUM_ARGUMENTS_DESC', - EventsSumBlockIdAsc = 'EVENTS_SUM_BLOCK_ID_ASC', - EventsSumBlockIdDesc = 'EVENTS_SUM_BLOCK_ID_DESC', - EventsSumBlockNumberAsc = 'EVENTS_SUM_BLOCK_NUMBER_ASC', - EventsSumBlockNumberDesc = 'EVENTS_SUM_BLOCK_NUMBER_DESC', - EventsSumDataAsc = 'EVENTS_SUM_DATA_ASC', - EventsSumDataDesc = 'EVENTS_SUM_DATA_DESC', - EventsSumDocsAsc = 'EVENTS_SUM_DOCS_ASC', - EventsSumDocsDesc = 'EVENTS_SUM_DOCS_DESC', - EventsSumExtrinsicIdAsc = 'EVENTS_SUM_EXTRINSIC_ID_ASC', - EventsSumExtrinsicIdDesc = 'EVENTS_SUM_EXTRINSIC_ID_DESC', - EventsSumIdAsc = 'EVENTS_SUM_ID_ASC', - EventsSumIdDesc = 'EVENTS_SUM_ID_DESC', - EventsSumIndexAsc = 'EVENTS_SUM_INDEX_ASC', - EventsSumIndexDesc = 'EVENTS_SUM_INDEX_DESC', - EventsSumMethodAsc = 'EVENTS_SUM_METHOD_ASC', - EventsSumMethodDesc = 'EVENTS_SUM_METHOD_DESC', - EventsSumModuleAsc = 'EVENTS_SUM_MODULE_ASC', - EventsSumModuleDesc = 'EVENTS_SUM_MODULE_DESC', - EventsSumTimestampAsc = 'EVENTS_SUM_TIMESTAMP_ASC', - EventsSumTimestampDesc = 'EVENTS_SUM_TIMESTAMP_DESC', - EventsVariancePopulationArgumentsAsc = 'EVENTS_VARIANCE_POPULATION_ARGUMENTS_ASC', - EventsVariancePopulationArgumentsDesc = 'EVENTS_VARIANCE_POPULATION_ARGUMENTS_DESC', - EventsVariancePopulationBlockIdAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC', - EventsVariancePopulationBlockIdDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC', - EventsVariancePopulationBlockNumberAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - EventsVariancePopulationBlockNumberDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - EventsVariancePopulationDataAsc = 'EVENTS_VARIANCE_POPULATION_DATA_ASC', - EventsVariancePopulationDataDesc = 'EVENTS_VARIANCE_POPULATION_DATA_DESC', - EventsVariancePopulationDocsAsc = 'EVENTS_VARIANCE_POPULATION_DOCS_ASC', - EventsVariancePopulationDocsDesc = 'EVENTS_VARIANCE_POPULATION_DOCS_DESC', - EventsVariancePopulationExtrinsicIdAsc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', - EventsVariancePopulationExtrinsicIdDesc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', - EventsVariancePopulationIdAsc = 'EVENTS_VARIANCE_POPULATION_ID_ASC', - EventsVariancePopulationIdDesc = 'EVENTS_VARIANCE_POPULATION_ID_DESC', - EventsVariancePopulationIndexAsc = 'EVENTS_VARIANCE_POPULATION_INDEX_ASC', - EventsVariancePopulationIndexDesc = 'EVENTS_VARIANCE_POPULATION_INDEX_DESC', - EventsVariancePopulationMethodAsc = 'EVENTS_VARIANCE_POPULATION_METHOD_ASC', - EventsVariancePopulationMethodDesc = 'EVENTS_VARIANCE_POPULATION_METHOD_DESC', - EventsVariancePopulationModuleAsc = 'EVENTS_VARIANCE_POPULATION_MODULE_ASC', - EventsVariancePopulationModuleDesc = 'EVENTS_VARIANCE_POPULATION_MODULE_DESC', - EventsVariancePopulationTimestampAsc = 'EVENTS_VARIANCE_POPULATION_TIMESTAMP_ASC', - EventsVariancePopulationTimestampDesc = 'EVENTS_VARIANCE_POPULATION_TIMESTAMP_DESC', - EventsVarianceSampleArgumentsAsc = 'EVENTS_VARIANCE_SAMPLE_ARGUMENTS_ASC', - EventsVarianceSampleArgumentsDesc = 'EVENTS_VARIANCE_SAMPLE_ARGUMENTS_DESC', - EventsVarianceSampleBlockIdAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - EventsVarianceSampleBlockIdDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - EventsVarianceSampleBlockNumberAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - EventsVarianceSampleBlockNumberDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - EventsVarianceSampleDataAsc = 'EVENTS_VARIANCE_SAMPLE_DATA_ASC', - EventsVarianceSampleDataDesc = 'EVENTS_VARIANCE_SAMPLE_DATA_DESC', - EventsVarianceSampleDocsAsc = 'EVENTS_VARIANCE_SAMPLE_DOCS_ASC', - EventsVarianceSampleDocsDesc = 'EVENTS_VARIANCE_SAMPLE_DOCS_DESC', - EventsVarianceSampleExtrinsicIdAsc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', - EventsVarianceSampleExtrinsicIdDesc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', - EventsVarianceSampleIdAsc = 'EVENTS_VARIANCE_SAMPLE_ID_ASC', - EventsVarianceSampleIdDesc = 'EVENTS_VARIANCE_SAMPLE_ID_DESC', - EventsVarianceSampleIndexAsc = 'EVENTS_VARIANCE_SAMPLE_INDEX_ASC', - EventsVarianceSampleIndexDesc = 'EVENTS_VARIANCE_SAMPLE_INDEX_DESC', - EventsVarianceSampleMethodAsc = 'EVENTS_VARIANCE_SAMPLE_METHOD_ASC', - EventsVarianceSampleMethodDesc = 'EVENTS_VARIANCE_SAMPLE_METHOD_DESC', - EventsVarianceSampleModuleAsc = 'EVENTS_VARIANCE_SAMPLE_MODULE_ASC', - EventsVarianceSampleModuleDesc = 'EVENTS_VARIANCE_SAMPLE_MODULE_DESC', - EventsVarianceSampleTimestampAsc = 'EVENTS_VARIANCE_SAMPLE_TIMESTAMP_ASC', - EventsVarianceSampleTimestampDesc = 'EVENTS_VARIANCE_SAMPLE_TIMESTAMP_DESC', - ExtrinsicsAverageArgumentsAsc = 'EXTRINSICS_AVERAGE_ARGUMENTS_ASC', - ExtrinsicsAverageArgumentsDesc = 'EXTRINSICS_AVERAGE_ARGUMENTS_DESC', - ExtrinsicsAverageBlockIdAsc = 'EXTRINSICS_AVERAGE_BLOCK_ID_ASC', - ExtrinsicsAverageBlockIdDesc = 'EXTRINSICS_AVERAGE_BLOCK_ID_DESC', - ExtrinsicsAverageBlockNumberAsc = 'EXTRINSICS_AVERAGE_BLOCK_NUMBER_ASC', - ExtrinsicsAverageBlockNumberDesc = 'EXTRINSICS_AVERAGE_BLOCK_NUMBER_DESC', - ExtrinsicsAverageHashAsc = 'EXTRINSICS_AVERAGE_HASH_ASC', - ExtrinsicsAverageHashDesc = 'EXTRINSICS_AVERAGE_HASH_DESC', - ExtrinsicsAverageIdAsc = 'EXTRINSICS_AVERAGE_ID_ASC', - ExtrinsicsAverageIdDesc = 'EXTRINSICS_AVERAGE_ID_DESC', - ExtrinsicsAverageIndexAsc = 'EXTRINSICS_AVERAGE_INDEX_ASC', - ExtrinsicsAverageIndexDesc = 'EXTRINSICS_AVERAGE_INDEX_DESC', - ExtrinsicsAverageIsSignedAsc = 'EXTRINSICS_AVERAGE_IS_SIGNED_ASC', - ExtrinsicsAverageIsSignedDesc = 'EXTRINSICS_AVERAGE_IS_SIGNED_DESC', - ExtrinsicsAverageIsSuccessAsc = 'EXTRINSICS_AVERAGE_IS_SUCCESS_ASC', - ExtrinsicsAverageIsSuccessDesc = 'EXTRINSICS_AVERAGE_IS_SUCCESS_DESC', - ExtrinsicsAverageMethodAsc = 'EXTRINSICS_AVERAGE_METHOD_ASC', - ExtrinsicsAverageMethodDesc = 'EXTRINSICS_AVERAGE_METHOD_DESC', - ExtrinsicsAverageModuleAsc = 'EXTRINSICS_AVERAGE_MODULE_ASC', - ExtrinsicsAverageModuleDesc = 'EXTRINSICS_AVERAGE_MODULE_DESC', - ExtrinsicsAverageSignerIdAsc = 'EXTRINSICS_AVERAGE_SIGNER_ID_ASC', - ExtrinsicsAverageSignerIdDesc = 'EXTRINSICS_AVERAGE_SIGNER_ID_DESC', - ExtrinsicsCountAsc = 'EXTRINSICS_COUNT_ASC', - ExtrinsicsCountDesc = 'EXTRINSICS_COUNT_DESC', - ExtrinsicsDistinctCountArgumentsAsc = 'EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_ASC', - ExtrinsicsDistinctCountArgumentsDesc = 'EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_DESC', - ExtrinsicsDistinctCountBlockIdAsc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC', - ExtrinsicsDistinctCountBlockIdDesc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC', - ExtrinsicsDistinctCountBlockNumberAsc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ExtrinsicsDistinctCountBlockNumberDesc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ExtrinsicsDistinctCountHashAsc = 'EXTRINSICS_DISTINCT_COUNT_HASH_ASC', - ExtrinsicsDistinctCountHashDesc = 'EXTRINSICS_DISTINCT_COUNT_HASH_DESC', - ExtrinsicsDistinctCountIdAsc = 'EXTRINSICS_DISTINCT_COUNT_ID_ASC', - ExtrinsicsDistinctCountIdDesc = 'EXTRINSICS_DISTINCT_COUNT_ID_DESC', - ExtrinsicsDistinctCountIndexAsc = 'EXTRINSICS_DISTINCT_COUNT_INDEX_ASC', - ExtrinsicsDistinctCountIndexDesc = 'EXTRINSICS_DISTINCT_COUNT_INDEX_DESC', - ExtrinsicsDistinctCountIsSignedAsc = 'EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_ASC', - ExtrinsicsDistinctCountIsSignedDesc = 'EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_DESC', - ExtrinsicsDistinctCountIsSuccessAsc = 'EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_ASC', - ExtrinsicsDistinctCountIsSuccessDesc = 'EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_DESC', - ExtrinsicsDistinctCountMethodAsc = 'EXTRINSICS_DISTINCT_COUNT_METHOD_ASC', - ExtrinsicsDistinctCountMethodDesc = 'EXTRINSICS_DISTINCT_COUNT_METHOD_DESC', - ExtrinsicsDistinctCountModuleAsc = 'EXTRINSICS_DISTINCT_COUNT_MODULE_ASC', - ExtrinsicsDistinctCountModuleDesc = 'EXTRINSICS_DISTINCT_COUNT_MODULE_DESC', - ExtrinsicsDistinctCountSignerIdAsc = 'EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_ASC', - ExtrinsicsDistinctCountSignerIdDesc = 'EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_DESC', - ExtrinsicsMaxArgumentsAsc = 'EXTRINSICS_MAX_ARGUMENTS_ASC', - ExtrinsicsMaxArgumentsDesc = 'EXTRINSICS_MAX_ARGUMENTS_DESC', - ExtrinsicsMaxBlockIdAsc = 'EXTRINSICS_MAX_BLOCK_ID_ASC', - ExtrinsicsMaxBlockIdDesc = 'EXTRINSICS_MAX_BLOCK_ID_DESC', - ExtrinsicsMaxBlockNumberAsc = 'EXTRINSICS_MAX_BLOCK_NUMBER_ASC', - ExtrinsicsMaxBlockNumberDesc = 'EXTRINSICS_MAX_BLOCK_NUMBER_DESC', - ExtrinsicsMaxHashAsc = 'EXTRINSICS_MAX_HASH_ASC', - ExtrinsicsMaxHashDesc = 'EXTRINSICS_MAX_HASH_DESC', - ExtrinsicsMaxIdAsc = 'EXTRINSICS_MAX_ID_ASC', - ExtrinsicsMaxIdDesc = 'EXTRINSICS_MAX_ID_DESC', - ExtrinsicsMaxIndexAsc = 'EXTRINSICS_MAX_INDEX_ASC', - ExtrinsicsMaxIndexDesc = 'EXTRINSICS_MAX_INDEX_DESC', - ExtrinsicsMaxIsSignedAsc = 'EXTRINSICS_MAX_IS_SIGNED_ASC', - ExtrinsicsMaxIsSignedDesc = 'EXTRINSICS_MAX_IS_SIGNED_DESC', - ExtrinsicsMaxIsSuccessAsc = 'EXTRINSICS_MAX_IS_SUCCESS_ASC', - ExtrinsicsMaxIsSuccessDesc = 'EXTRINSICS_MAX_IS_SUCCESS_DESC', - ExtrinsicsMaxMethodAsc = 'EXTRINSICS_MAX_METHOD_ASC', - ExtrinsicsMaxMethodDesc = 'EXTRINSICS_MAX_METHOD_DESC', - ExtrinsicsMaxModuleAsc = 'EXTRINSICS_MAX_MODULE_ASC', - ExtrinsicsMaxModuleDesc = 'EXTRINSICS_MAX_MODULE_DESC', - ExtrinsicsMaxSignerIdAsc = 'EXTRINSICS_MAX_SIGNER_ID_ASC', - ExtrinsicsMaxSignerIdDesc = 'EXTRINSICS_MAX_SIGNER_ID_DESC', - ExtrinsicsMinArgumentsAsc = 'EXTRINSICS_MIN_ARGUMENTS_ASC', - ExtrinsicsMinArgumentsDesc = 'EXTRINSICS_MIN_ARGUMENTS_DESC', - ExtrinsicsMinBlockIdAsc = 'EXTRINSICS_MIN_BLOCK_ID_ASC', - ExtrinsicsMinBlockIdDesc = 'EXTRINSICS_MIN_BLOCK_ID_DESC', - ExtrinsicsMinBlockNumberAsc = 'EXTRINSICS_MIN_BLOCK_NUMBER_ASC', - ExtrinsicsMinBlockNumberDesc = 'EXTRINSICS_MIN_BLOCK_NUMBER_DESC', - ExtrinsicsMinHashAsc = 'EXTRINSICS_MIN_HASH_ASC', - ExtrinsicsMinHashDesc = 'EXTRINSICS_MIN_HASH_DESC', - ExtrinsicsMinIdAsc = 'EXTRINSICS_MIN_ID_ASC', - ExtrinsicsMinIdDesc = 'EXTRINSICS_MIN_ID_DESC', - ExtrinsicsMinIndexAsc = 'EXTRINSICS_MIN_INDEX_ASC', - ExtrinsicsMinIndexDesc = 'EXTRINSICS_MIN_INDEX_DESC', - ExtrinsicsMinIsSignedAsc = 'EXTRINSICS_MIN_IS_SIGNED_ASC', - ExtrinsicsMinIsSignedDesc = 'EXTRINSICS_MIN_IS_SIGNED_DESC', - ExtrinsicsMinIsSuccessAsc = 'EXTRINSICS_MIN_IS_SUCCESS_ASC', - ExtrinsicsMinIsSuccessDesc = 'EXTRINSICS_MIN_IS_SUCCESS_DESC', - ExtrinsicsMinMethodAsc = 'EXTRINSICS_MIN_METHOD_ASC', - ExtrinsicsMinMethodDesc = 'EXTRINSICS_MIN_METHOD_DESC', - ExtrinsicsMinModuleAsc = 'EXTRINSICS_MIN_MODULE_ASC', - ExtrinsicsMinModuleDesc = 'EXTRINSICS_MIN_MODULE_DESC', - ExtrinsicsMinSignerIdAsc = 'EXTRINSICS_MIN_SIGNER_ID_ASC', - ExtrinsicsMinSignerIdDesc = 'EXTRINSICS_MIN_SIGNER_ID_DESC', - ExtrinsicsRootAsc = 'EXTRINSICS_ROOT_ASC', - ExtrinsicsRootDesc = 'EXTRINSICS_ROOT_DESC', - ExtrinsicsStddevPopulationArgumentsAsc = 'EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_ASC', - ExtrinsicsStddevPopulationArgumentsDesc = 'EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_DESC', - ExtrinsicsStddevPopulationBlockIdAsc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC', - ExtrinsicsStddevPopulationBlockIdDesc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC', - ExtrinsicsStddevPopulationBlockNumberAsc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ExtrinsicsStddevPopulationBlockNumberDesc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ExtrinsicsStddevPopulationHashAsc = 'EXTRINSICS_STDDEV_POPULATION_HASH_ASC', - ExtrinsicsStddevPopulationHashDesc = 'EXTRINSICS_STDDEV_POPULATION_HASH_DESC', - ExtrinsicsStddevPopulationIdAsc = 'EXTRINSICS_STDDEV_POPULATION_ID_ASC', - ExtrinsicsStddevPopulationIdDesc = 'EXTRINSICS_STDDEV_POPULATION_ID_DESC', - ExtrinsicsStddevPopulationIndexAsc = 'EXTRINSICS_STDDEV_POPULATION_INDEX_ASC', - ExtrinsicsStddevPopulationIndexDesc = 'EXTRINSICS_STDDEV_POPULATION_INDEX_DESC', - ExtrinsicsStddevPopulationIsSignedAsc = 'EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_ASC', - ExtrinsicsStddevPopulationIsSignedDesc = 'EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_DESC', - ExtrinsicsStddevPopulationIsSuccessAsc = 'EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_ASC', - ExtrinsicsStddevPopulationIsSuccessDesc = 'EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_DESC', - ExtrinsicsStddevPopulationMethodAsc = 'EXTRINSICS_STDDEV_POPULATION_METHOD_ASC', - ExtrinsicsStddevPopulationMethodDesc = 'EXTRINSICS_STDDEV_POPULATION_METHOD_DESC', - ExtrinsicsStddevPopulationModuleAsc = 'EXTRINSICS_STDDEV_POPULATION_MODULE_ASC', - ExtrinsicsStddevPopulationModuleDesc = 'EXTRINSICS_STDDEV_POPULATION_MODULE_DESC', - ExtrinsicsStddevPopulationSignerIdAsc = 'EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_ASC', - ExtrinsicsStddevPopulationSignerIdDesc = 'EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_DESC', - ExtrinsicsStddevSampleArgumentsAsc = 'EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_ASC', - ExtrinsicsStddevSampleArgumentsDesc = 'EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_DESC', - ExtrinsicsStddevSampleBlockIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC', - ExtrinsicsStddevSampleBlockIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC', - ExtrinsicsStddevSampleBlockNumberAsc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ExtrinsicsStddevSampleBlockNumberDesc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ExtrinsicsStddevSampleHashAsc = 'EXTRINSICS_STDDEV_SAMPLE_HASH_ASC', - ExtrinsicsStddevSampleHashDesc = 'EXTRINSICS_STDDEV_SAMPLE_HASH_DESC', - ExtrinsicsStddevSampleIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_ID_ASC', - ExtrinsicsStddevSampleIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_ID_DESC', - ExtrinsicsStddevSampleIndexAsc = 'EXTRINSICS_STDDEV_SAMPLE_INDEX_ASC', - ExtrinsicsStddevSampleIndexDesc = 'EXTRINSICS_STDDEV_SAMPLE_INDEX_DESC', - ExtrinsicsStddevSampleIsSignedAsc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_ASC', - ExtrinsicsStddevSampleIsSignedDesc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_DESC', - ExtrinsicsStddevSampleIsSuccessAsc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_ASC', - ExtrinsicsStddevSampleIsSuccessDesc = 'EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_DESC', - ExtrinsicsStddevSampleMethodAsc = 'EXTRINSICS_STDDEV_SAMPLE_METHOD_ASC', - ExtrinsicsStddevSampleMethodDesc = 'EXTRINSICS_STDDEV_SAMPLE_METHOD_DESC', - ExtrinsicsStddevSampleModuleAsc = 'EXTRINSICS_STDDEV_SAMPLE_MODULE_ASC', - ExtrinsicsStddevSampleModuleDesc = 'EXTRINSICS_STDDEV_SAMPLE_MODULE_DESC', - ExtrinsicsStddevSampleSignerIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_ASC', - ExtrinsicsStddevSampleSignerIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_DESC', - ExtrinsicsSumArgumentsAsc = 'EXTRINSICS_SUM_ARGUMENTS_ASC', - ExtrinsicsSumArgumentsDesc = 'EXTRINSICS_SUM_ARGUMENTS_DESC', - ExtrinsicsSumBlockIdAsc = 'EXTRINSICS_SUM_BLOCK_ID_ASC', - ExtrinsicsSumBlockIdDesc = 'EXTRINSICS_SUM_BLOCK_ID_DESC', - ExtrinsicsSumBlockNumberAsc = 'EXTRINSICS_SUM_BLOCK_NUMBER_ASC', - ExtrinsicsSumBlockNumberDesc = 'EXTRINSICS_SUM_BLOCK_NUMBER_DESC', - ExtrinsicsSumHashAsc = 'EXTRINSICS_SUM_HASH_ASC', - ExtrinsicsSumHashDesc = 'EXTRINSICS_SUM_HASH_DESC', - ExtrinsicsSumIdAsc = 'EXTRINSICS_SUM_ID_ASC', - ExtrinsicsSumIdDesc = 'EXTRINSICS_SUM_ID_DESC', - ExtrinsicsSumIndexAsc = 'EXTRINSICS_SUM_INDEX_ASC', - ExtrinsicsSumIndexDesc = 'EXTRINSICS_SUM_INDEX_DESC', - ExtrinsicsSumIsSignedAsc = 'EXTRINSICS_SUM_IS_SIGNED_ASC', - ExtrinsicsSumIsSignedDesc = 'EXTRINSICS_SUM_IS_SIGNED_DESC', - ExtrinsicsSumIsSuccessAsc = 'EXTRINSICS_SUM_IS_SUCCESS_ASC', - ExtrinsicsSumIsSuccessDesc = 'EXTRINSICS_SUM_IS_SUCCESS_DESC', - ExtrinsicsSumMethodAsc = 'EXTRINSICS_SUM_METHOD_ASC', - ExtrinsicsSumMethodDesc = 'EXTRINSICS_SUM_METHOD_DESC', - ExtrinsicsSumModuleAsc = 'EXTRINSICS_SUM_MODULE_ASC', - ExtrinsicsSumModuleDesc = 'EXTRINSICS_SUM_MODULE_DESC', - ExtrinsicsSumSignerIdAsc = 'EXTRINSICS_SUM_SIGNER_ID_ASC', - ExtrinsicsSumSignerIdDesc = 'EXTRINSICS_SUM_SIGNER_ID_DESC', - ExtrinsicsVariancePopulationArgumentsAsc = 'EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_ASC', - ExtrinsicsVariancePopulationArgumentsDesc = 'EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_DESC', - ExtrinsicsVariancePopulationBlockIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC', - ExtrinsicsVariancePopulationBlockIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC', - ExtrinsicsVariancePopulationBlockNumberAsc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ExtrinsicsVariancePopulationBlockNumberDesc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ExtrinsicsVariancePopulationHashAsc = 'EXTRINSICS_VARIANCE_POPULATION_HASH_ASC', - ExtrinsicsVariancePopulationHashDesc = 'EXTRINSICS_VARIANCE_POPULATION_HASH_DESC', - ExtrinsicsVariancePopulationIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_ID_ASC', - ExtrinsicsVariancePopulationIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_ID_DESC', - ExtrinsicsVariancePopulationIndexAsc = 'EXTRINSICS_VARIANCE_POPULATION_INDEX_ASC', - ExtrinsicsVariancePopulationIndexDesc = 'EXTRINSICS_VARIANCE_POPULATION_INDEX_DESC', - ExtrinsicsVariancePopulationIsSignedAsc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_ASC', - ExtrinsicsVariancePopulationIsSignedDesc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_DESC', - ExtrinsicsVariancePopulationIsSuccessAsc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_ASC', - ExtrinsicsVariancePopulationIsSuccessDesc = 'EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_DESC', - ExtrinsicsVariancePopulationMethodAsc = 'EXTRINSICS_VARIANCE_POPULATION_METHOD_ASC', - ExtrinsicsVariancePopulationMethodDesc = 'EXTRINSICS_VARIANCE_POPULATION_METHOD_DESC', - ExtrinsicsVariancePopulationModuleAsc = 'EXTRINSICS_VARIANCE_POPULATION_MODULE_ASC', - ExtrinsicsVariancePopulationModuleDesc = 'EXTRINSICS_VARIANCE_POPULATION_MODULE_DESC', - ExtrinsicsVariancePopulationSignerIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_ASC', - ExtrinsicsVariancePopulationSignerIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_DESC', - ExtrinsicsVarianceSampleArgumentsAsc = 'EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_ASC', - ExtrinsicsVarianceSampleArgumentsDesc = 'EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_DESC', - ExtrinsicsVarianceSampleBlockIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ExtrinsicsVarianceSampleBlockIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ExtrinsicsVarianceSampleBlockNumberAsc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ExtrinsicsVarianceSampleBlockNumberDesc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ExtrinsicsVarianceSampleHashAsc = 'EXTRINSICS_VARIANCE_SAMPLE_HASH_ASC', - ExtrinsicsVarianceSampleHashDesc = 'EXTRINSICS_VARIANCE_SAMPLE_HASH_DESC', - ExtrinsicsVarianceSampleIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_ID_ASC', - ExtrinsicsVarianceSampleIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_ID_DESC', - ExtrinsicsVarianceSampleIndexAsc = 'EXTRINSICS_VARIANCE_SAMPLE_INDEX_ASC', - ExtrinsicsVarianceSampleIndexDesc = 'EXTRINSICS_VARIANCE_SAMPLE_INDEX_DESC', - ExtrinsicsVarianceSampleIsSignedAsc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_ASC', - ExtrinsicsVarianceSampleIsSignedDesc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_DESC', - ExtrinsicsVarianceSampleIsSuccessAsc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_ASC', - ExtrinsicsVarianceSampleIsSuccessDesc = 'EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_DESC', - ExtrinsicsVarianceSampleMethodAsc = 'EXTRINSICS_VARIANCE_SAMPLE_METHOD_ASC', - ExtrinsicsVarianceSampleMethodDesc = 'EXTRINSICS_VARIANCE_SAMPLE_METHOD_DESC', - ExtrinsicsVarianceSampleModuleAsc = 'EXTRINSICS_VARIANCE_SAMPLE_MODULE_ASC', - ExtrinsicsVarianceSampleModuleDesc = 'EXTRINSICS_VARIANCE_SAMPLE_MODULE_DESC', - ExtrinsicsVarianceSampleSignerIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_ASC', - ExtrinsicsVarianceSampleSignerIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_DESC', - HashAsc = 'HASH_ASC', - HashDesc = 'HASH_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - KeygenThresholdsAverageBlockIdAsc = 'KEYGEN_THRESHOLDS_AVERAGE_BLOCK_ID_ASC', - KeygenThresholdsAverageBlockIdDesc = 'KEYGEN_THRESHOLDS_AVERAGE_BLOCK_ID_DESC', - KeygenThresholdsAverageCurrentAsc = 'KEYGEN_THRESHOLDS_AVERAGE_CURRENT_ASC', - KeygenThresholdsAverageCurrentDesc = 'KEYGEN_THRESHOLDS_AVERAGE_CURRENT_DESC', - KeygenThresholdsAverageIdAsc = 'KEYGEN_THRESHOLDS_AVERAGE_ID_ASC', - KeygenThresholdsAverageIdDesc = 'KEYGEN_THRESHOLDS_AVERAGE_ID_DESC', - KeygenThresholdsAverageNextAsc = 'KEYGEN_THRESHOLDS_AVERAGE_NEXT_ASC', - KeygenThresholdsAverageNextDesc = 'KEYGEN_THRESHOLDS_AVERAGE_NEXT_DESC', - KeygenThresholdsAveragePendingAsc = 'KEYGEN_THRESHOLDS_AVERAGE_PENDING_ASC', - KeygenThresholdsAveragePendingDesc = 'KEYGEN_THRESHOLDS_AVERAGE_PENDING_DESC', - KeygenThresholdsCountAsc = 'KEYGEN_THRESHOLDS_COUNT_ASC', - KeygenThresholdsCountDesc = 'KEYGEN_THRESHOLDS_COUNT_DESC', - KeygenThresholdsDistinctCountBlockIdAsc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC', - KeygenThresholdsDistinctCountBlockIdDesc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC', - KeygenThresholdsDistinctCountCurrentAsc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC', - KeygenThresholdsDistinctCountCurrentDesc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC', - KeygenThresholdsDistinctCountIdAsc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_ID_ASC', - KeygenThresholdsDistinctCountIdDesc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_ID_DESC', - KeygenThresholdsDistinctCountNextAsc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_NEXT_ASC', - KeygenThresholdsDistinctCountNextDesc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_NEXT_DESC', - KeygenThresholdsDistinctCountPendingAsc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_PENDING_ASC', - KeygenThresholdsDistinctCountPendingDesc = 'KEYGEN_THRESHOLDS_DISTINCT_COUNT_PENDING_DESC', - KeygenThresholdsMaxBlockIdAsc = 'KEYGEN_THRESHOLDS_MAX_BLOCK_ID_ASC', - KeygenThresholdsMaxBlockIdDesc = 'KEYGEN_THRESHOLDS_MAX_BLOCK_ID_DESC', - KeygenThresholdsMaxCurrentAsc = 'KEYGEN_THRESHOLDS_MAX_CURRENT_ASC', - KeygenThresholdsMaxCurrentDesc = 'KEYGEN_THRESHOLDS_MAX_CURRENT_DESC', - KeygenThresholdsMaxIdAsc = 'KEYGEN_THRESHOLDS_MAX_ID_ASC', - KeygenThresholdsMaxIdDesc = 'KEYGEN_THRESHOLDS_MAX_ID_DESC', - KeygenThresholdsMaxNextAsc = 'KEYGEN_THRESHOLDS_MAX_NEXT_ASC', - KeygenThresholdsMaxNextDesc = 'KEYGEN_THRESHOLDS_MAX_NEXT_DESC', - KeygenThresholdsMaxPendingAsc = 'KEYGEN_THRESHOLDS_MAX_PENDING_ASC', - KeygenThresholdsMaxPendingDesc = 'KEYGEN_THRESHOLDS_MAX_PENDING_DESC', - KeygenThresholdsMinBlockIdAsc = 'KEYGEN_THRESHOLDS_MIN_BLOCK_ID_ASC', - KeygenThresholdsMinBlockIdDesc = 'KEYGEN_THRESHOLDS_MIN_BLOCK_ID_DESC', - KeygenThresholdsMinCurrentAsc = 'KEYGEN_THRESHOLDS_MIN_CURRENT_ASC', - KeygenThresholdsMinCurrentDesc = 'KEYGEN_THRESHOLDS_MIN_CURRENT_DESC', - KeygenThresholdsMinIdAsc = 'KEYGEN_THRESHOLDS_MIN_ID_ASC', - KeygenThresholdsMinIdDesc = 'KEYGEN_THRESHOLDS_MIN_ID_DESC', - KeygenThresholdsMinNextAsc = 'KEYGEN_THRESHOLDS_MIN_NEXT_ASC', - KeygenThresholdsMinNextDesc = 'KEYGEN_THRESHOLDS_MIN_NEXT_DESC', - KeygenThresholdsMinPendingAsc = 'KEYGEN_THRESHOLDS_MIN_PENDING_ASC', - KeygenThresholdsMinPendingDesc = 'KEYGEN_THRESHOLDS_MIN_PENDING_DESC', - KeygenThresholdsStddevPopulationBlockIdAsc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC', - KeygenThresholdsStddevPopulationBlockIdDesc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC', - KeygenThresholdsStddevPopulationCurrentAsc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC', - KeygenThresholdsStddevPopulationCurrentDesc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC', - KeygenThresholdsStddevPopulationIdAsc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_ID_ASC', - KeygenThresholdsStddevPopulationIdDesc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_ID_DESC', - KeygenThresholdsStddevPopulationNextAsc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_NEXT_ASC', - KeygenThresholdsStddevPopulationNextDesc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_NEXT_DESC', - KeygenThresholdsStddevPopulationPendingAsc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_PENDING_ASC', - KeygenThresholdsStddevPopulationPendingDesc = 'KEYGEN_THRESHOLDS_STDDEV_POPULATION_PENDING_DESC', - KeygenThresholdsStddevSampleBlockIdAsc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC', - KeygenThresholdsStddevSampleBlockIdDesc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC', - KeygenThresholdsStddevSampleCurrentAsc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC', - KeygenThresholdsStddevSampleCurrentDesc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC', - KeygenThresholdsStddevSampleIdAsc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_ID_ASC', - KeygenThresholdsStddevSampleIdDesc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_ID_DESC', - KeygenThresholdsStddevSampleNextAsc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC', - KeygenThresholdsStddevSampleNextDesc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC', - KeygenThresholdsStddevSamplePendingAsc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC', - KeygenThresholdsStddevSamplePendingDesc = 'KEYGEN_THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC', - KeygenThresholdsSumBlockIdAsc = 'KEYGEN_THRESHOLDS_SUM_BLOCK_ID_ASC', - KeygenThresholdsSumBlockIdDesc = 'KEYGEN_THRESHOLDS_SUM_BLOCK_ID_DESC', - KeygenThresholdsSumCurrentAsc = 'KEYGEN_THRESHOLDS_SUM_CURRENT_ASC', - KeygenThresholdsSumCurrentDesc = 'KEYGEN_THRESHOLDS_SUM_CURRENT_DESC', - KeygenThresholdsSumIdAsc = 'KEYGEN_THRESHOLDS_SUM_ID_ASC', - KeygenThresholdsSumIdDesc = 'KEYGEN_THRESHOLDS_SUM_ID_DESC', - KeygenThresholdsSumNextAsc = 'KEYGEN_THRESHOLDS_SUM_NEXT_ASC', - KeygenThresholdsSumNextDesc = 'KEYGEN_THRESHOLDS_SUM_NEXT_DESC', - KeygenThresholdsSumPendingAsc = 'KEYGEN_THRESHOLDS_SUM_PENDING_ASC', - KeygenThresholdsSumPendingDesc = 'KEYGEN_THRESHOLDS_SUM_PENDING_DESC', - KeygenThresholdsVariancePopulationBlockIdAsc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC', - KeygenThresholdsVariancePopulationBlockIdDesc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC', - KeygenThresholdsVariancePopulationCurrentAsc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC', - KeygenThresholdsVariancePopulationCurrentDesc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC', - KeygenThresholdsVariancePopulationIdAsc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_ID_ASC', - KeygenThresholdsVariancePopulationIdDesc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_ID_DESC', - KeygenThresholdsVariancePopulationNextAsc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC', - KeygenThresholdsVariancePopulationNextDesc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC', - KeygenThresholdsVariancePopulationPendingAsc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC', - KeygenThresholdsVariancePopulationPendingDesc = 'KEYGEN_THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC', - KeygenThresholdsVarianceSampleBlockIdAsc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - KeygenThresholdsVarianceSampleBlockIdDesc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - KeygenThresholdsVarianceSampleCurrentAsc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC', - KeygenThresholdsVarianceSampleCurrentDesc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC', - KeygenThresholdsVarianceSampleIdAsc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC', - KeygenThresholdsVarianceSampleIdDesc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC', - KeygenThresholdsVarianceSampleNextAsc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC', - KeygenThresholdsVarianceSampleNextDesc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC', - KeygenThresholdsVarianceSamplePendingAsc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC', - KeygenThresholdsVarianceSamplePendingDesc = 'KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC', - Natural = 'NATURAL', - NumberAsc = 'NUMBER_ASC', - NumberDesc = 'NUMBER_DESC', - ParentHashAsc = 'PARENT_HASH_ASC', - ParentHashDesc = 'PARENT_HASH_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposalCountersAverageBlockIdAsc = 'PROPOSAL_COUNTERS_AVERAGE_BLOCK_ID_ASC', - ProposalCountersAverageBlockIdDesc = 'PROPOSAL_COUNTERS_AVERAGE_BLOCK_ID_DESC', - ProposalCountersAverageBlockNumberAsc = 'PROPOSAL_COUNTERS_AVERAGE_BLOCK_NUMBER_ASC', - ProposalCountersAverageBlockNumberDesc = 'PROPOSAL_COUNTERS_AVERAGE_BLOCK_NUMBER_DESC', - ProposalCountersAverageIdAsc = 'PROPOSAL_COUNTERS_AVERAGE_ID_ASC', - ProposalCountersAverageIdDesc = 'PROPOSAL_COUNTERS_AVERAGE_ID_DESC', - ProposalCountersAverageSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersAverageSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersAverageSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersAverageSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersAverageStatusMapAsc = 'PROPOSAL_COUNTERS_AVERAGE_STATUS_MAP_ASC', - ProposalCountersAverageStatusMapDesc = 'PROPOSAL_COUNTERS_AVERAGE_STATUS_MAP_DESC', - ProposalCountersAverageUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersAverageUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersAverageUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersAverageUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersCountAsc = 'PROPOSAL_COUNTERS_COUNT_ASC', - ProposalCountersCountDesc = 'PROPOSAL_COUNTERS_COUNT_DESC', - ProposalCountersDistinctCountBlockIdAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_ID_ASC', - ProposalCountersDistinctCountBlockIdDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_ID_DESC', - ProposalCountersDistinctCountBlockNumberAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ProposalCountersDistinctCountBlockNumberDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ProposalCountersDistinctCountIdAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_ID_ASC', - ProposalCountersDistinctCountIdDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_ID_DESC', - ProposalCountersDistinctCountSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersDistinctCountSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersDistinctCountSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersDistinctCountSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersDistinctCountStatusMapAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_STATUS_MAP_ASC', - ProposalCountersDistinctCountStatusMapDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_STATUS_MAP_DESC', - ProposalCountersDistinctCountUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersDistinctCountUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersDistinctCountUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersDistinctCountUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersMaxBlockIdAsc = 'PROPOSAL_COUNTERS_MAX_BLOCK_ID_ASC', - ProposalCountersMaxBlockIdDesc = 'PROPOSAL_COUNTERS_MAX_BLOCK_ID_DESC', - ProposalCountersMaxBlockNumberAsc = 'PROPOSAL_COUNTERS_MAX_BLOCK_NUMBER_ASC', - ProposalCountersMaxBlockNumberDesc = 'PROPOSAL_COUNTERS_MAX_BLOCK_NUMBER_DESC', - ProposalCountersMaxIdAsc = 'PROPOSAL_COUNTERS_MAX_ID_ASC', - ProposalCountersMaxIdDesc = 'PROPOSAL_COUNTERS_MAX_ID_DESC', - ProposalCountersMaxSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersMaxSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersMaxSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersMaxSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersMaxStatusMapAsc = 'PROPOSAL_COUNTERS_MAX_STATUS_MAP_ASC', - ProposalCountersMaxStatusMapDesc = 'PROPOSAL_COUNTERS_MAX_STATUS_MAP_DESC', - ProposalCountersMaxUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersMaxUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersMaxUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersMaxUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersMinBlockIdAsc = 'PROPOSAL_COUNTERS_MIN_BLOCK_ID_ASC', - ProposalCountersMinBlockIdDesc = 'PROPOSAL_COUNTERS_MIN_BLOCK_ID_DESC', - ProposalCountersMinBlockNumberAsc = 'PROPOSAL_COUNTERS_MIN_BLOCK_NUMBER_ASC', - ProposalCountersMinBlockNumberDesc = 'PROPOSAL_COUNTERS_MIN_BLOCK_NUMBER_DESC', - ProposalCountersMinIdAsc = 'PROPOSAL_COUNTERS_MIN_ID_ASC', - ProposalCountersMinIdDesc = 'PROPOSAL_COUNTERS_MIN_ID_DESC', - ProposalCountersMinSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersMinSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersMinSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersMinSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersMinStatusMapAsc = 'PROPOSAL_COUNTERS_MIN_STATUS_MAP_ASC', - ProposalCountersMinStatusMapDesc = 'PROPOSAL_COUNTERS_MIN_STATUS_MAP_DESC', - ProposalCountersMinUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersMinUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersMinUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersMinUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersStddevPopulationBlockIdAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_ID_ASC', - ProposalCountersStddevPopulationBlockIdDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_ID_DESC', - ProposalCountersStddevPopulationBlockNumberAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ProposalCountersStddevPopulationBlockNumberDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ProposalCountersStddevPopulationIdAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_ID_ASC', - ProposalCountersStddevPopulationIdDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_ID_DESC', - ProposalCountersStddevPopulationSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersStddevPopulationSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersStddevPopulationSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersStddevPopulationSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersStddevPopulationStatusMapAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_STATUS_MAP_ASC', - ProposalCountersStddevPopulationStatusMapDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_STATUS_MAP_DESC', - ProposalCountersStddevPopulationUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersStddevPopulationUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersStddevPopulationUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersStddevPopulationUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersStddevSampleBlockIdAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_ID_ASC', - ProposalCountersStddevSampleBlockIdDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_ID_DESC', - ProposalCountersStddevSampleBlockNumberAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ProposalCountersStddevSampleBlockNumberDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ProposalCountersStddevSampleIdAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_ID_ASC', - ProposalCountersStddevSampleIdDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_ID_DESC', - ProposalCountersStddevSampleSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersStddevSampleSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersStddevSampleSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersStddevSampleSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersStddevSampleStatusMapAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_STATUS_MAP_ASC', - ProposalCountersStddevSampleStatusMapDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_STATUS_MAP_DESC', - ProposalCountersStddevSampleUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersStddevSampleUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersStddevSampleUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersStddevSampleUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersSumBlockIdAsc = 'PROPOSAL_COUNTERS_SUM_BLOCK_ID_ASC', - ProposalCountersSumBlockIdDesc = 'PROPOSAL_COUNTERS_SUM_BLOCK_ID_DESC', - ProposalCountersSumBlockNumberAsc = 'PROPOSAL_COUNTERS_SUM_BLOCK_NUMBER_ASC', - ProposalCountersSumBlockNumberDesc = 'PROPOSAL_COUNTERS_SUM_BLOCK_NUMBER_DESC', - ProposalCountersSumIdAsc = 'PROPOSAL_COUNTERS_SUM_ID_ASC', - ProposalCountersSumIdDesc = 'PROPOSAL_COUNTERS_SUM_ID_DESC', - ProposalCountersSumSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersSumSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersSumSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersSumSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersSumStatusMapAsc = 'PROPOSAL_COUNTERS_SUM_STATUS_MAP_ASC', - ProposalCountersSumStatusMapDesc = 'PROPOSAL_COUNTERS_SUM_STATUS_MAP_DESC', - ProposalCountersSumUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersSumUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersSumUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersSumUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersVariancePopulationBlockIdAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_ID_ASC', - ProposalCountersVariancePopulationBlockIdDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_ID_DESC', - ProposalCountersVariancePopulationBlockNumberAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ProposalCountersVariancePopulationBlockNumberDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ProposalCountersVariancePopulationIdAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_ID_ASC', - ProposalCountersVariancePopulationIdDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_ID_DESC', - ProposalCountersVariancePopulationSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersVariancePopulationSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersVariancePopulationSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersVariancePopulationSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersVariancePopulationStatusMapAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_STATUS_MAP_ASC', - ProposalCountersVariancePopulationStatusMapDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_STATUS_MAP_DESC', - ProposalCountersVariancePopulationUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersVariancePopulationUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersVariancePopulationUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersVariancePopulationUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersVarianceSampleBlockIdAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ProposalCountersVarianceSampleBlockIdDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ProposalCountersVarianceSampleBlockNumberAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ProposalCountersVarianceSampleBlockNumberDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ProposalCountersVarianceSampleIdAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_ID_ASC', - ProposalCountersVarianceSampleIdDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_ID_DESC', - ProposalCountersVarianceSampleSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersVarianceSampleSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersVarianceSampleSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersVarianceSampleSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_MAP_DESC', - ProposalCountersVarianceSampleStatusMapAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_STATUS_MAP_ASC', - ProposalCountersVarianceSampleStatusMapDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_STATUS_MAP_DESC', - ProposalCountersVarianceSampleUnSignedProposalsCountAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_ASC', - ProposalCountersVarianceSampleUnSignedProposalsCountDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_DESC', - ProposalCountersVarianceSampleUnSignedProposalsMapAsc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_MAP_ASC', - ProposalCountersVarianceSampleUnSignedProposalsMapDesc = 'PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_MAP_DESC', - ProposalItemsAverageBlockIdAsc = 'PROPOSAL_ITEMS_AVERAGE_BLOCK_ID_ASC', - ProposalItemsAverageBlockIdDesc = 'PROPOSAL_ITEMS_AVERAGE_BLOCK_ID_DESC', - ProposalItemsAverageBlockNumberAsc = 'PROPOSAL_ITEMS_AVERAGE_BLOCK_NUMBER_ASC', - ProposalItemsAverageBlockNumberDesc = 'PROPOSAL_ITEMS_AVERAGE_BLOCK_NUMBER_DESC', - ProposalItemsAverageChainIdAsc = 'PROPOSAL_ITEMS_AVERAGE_CHAIN_ID_ASC', - ProposalItemsAverageChainIdDesc = 'PROPOSAL_ITEMS_AVERAGE_CHAIN_ID_DESC', - ProposalItemsAverageDataAsc = 'PROPOSAL_ITEMS_AVERAGE_DATA_ASC', - ProposalItemsAverageDataDesc = 'PROPOSAL_ITEMS_AVERAGE_DATA_DESC', - ProposalItemsAverageIdAsc = 'PROPOSAL_ITEMS_AVERAGE_ID_ASC', - ProposalItemsAverageIdDesc = 'PROPOSAL_ITEMS_AVERAGE_ID_DESC', - ProposalItemsAverageNonceAsc = 'PROPOSAL_ITEMS_AVERAGE_NONCE_ASC', - ProposalItemsAverageNonceDesc = 'PROPOSAL_ITEMS_AVERAGE_NONCE_DESC', - ProposalItemsAverageRemovedAsc = 'PROPOSAL_ITEMS_AVERAGE_REMOVED_ASC', - ProposalItemsAverageRemovedDesc = 'PROPOSAL_ITEMS_AVERAGE_REMOVED_DESC', - ProposalItemsAverageSignatureAsc = 'PROPOSAL_ITEMS_AVERAGE_SIGNATURE_ASC', - ProposalItemsAverageSignatureDesc = 'PROPOSAL_ITEMS_AVERAGE_SIGNATURE_DESC', - ProposalItemsAverageStatusAsc = 'PROPOSAL_ITEMS_AVERAGE_STATUS_ASC', - ProposalItemsAverageStatusDesc = 'PROPOSAL_ITEMS_AVERAGE_STATUS_DESC', - ProposalItemsAverageTypeAsc = 'PROPOSAL_ITEMS_AVERAGE_TYPE_ASC', - ProposalItemsAverageTypeDesc = 'PROPOSAL_ITEMS_AVERAGE_TYPE_DESC', - ProposalItemsCountAsc = 'PROPOSAL_ITEMS_COUNT_ASC', - ProposalItemsCountDesc = 'PROPOSAL_ITEMS_COUNT_DESC', - ProposalItemsDistinctCountBlockIdAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_ID_ASC', - ProposalItemsDistinctCountBlockIdDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_ID_DESC', - ProposalItemsDistinctCountBlockNumberAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ProposalItemsDistinctCountBlockNumberDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ProposalItemsDistinctCountChainIdAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_CHAIN_ID_ASC', - ProposalItemsDistinctCountChainIdDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_CHAIN_ID_DESC', - ProposalItemsDistinctCountDataAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_DATA_ASC', - ProposalItemsDistinctCountDataDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_DATA_DESC', - ProposalItemsDistinctCountIdAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_ID_ASC', - ProposalItemsDistinctCountIdDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_ID_DESC', - ProposalItemsDistinctCountNonceAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_NONCE_ASC', - ProposalItemsDistinctCountNonceDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_NONCE_DESC', - ProposalItemsDistinctCountRemovedAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_REMOVED_ASC', - ProposalItemsDistinctCountRemovedDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_REMOVED_DESC', - ProposalItemsDistinctCountSignatureAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_SIGNATURE_ASC', - ProposalItemsDistinctCountSignatureDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_SIGNATURE_DESC', - ProposalItemsDistinctCountStatusAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_STATUS_ASC', - ProposalItemsDistinctCountStatusDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_STATUS_DESC', - ProposalItemsDistinctCountTypeAsc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_TYPE_ASC', - ProposalItemsDistinctCountTypeDesc = 'PROPOSAL_ITEMS_DISTINCT_COUNT_TYPE_DESC', - ProposalItemsMaxBlockIdAsc = 'PROPOSAL_ITEMS_MAX_BLOCK_ID_ASC', - ProposalItemsMaxBlockIdDesc = 'PROPOSAL_ITEMS_MAX_BLOCK_ID_DESC', - ProposalItemsMaxBlockNumberAsc = 'PROPOSAL_ITEMS_MAX_BLOCK_NUMBER_ASC', - ProposalItemsMaxBlockNumberDesc = 'PROPOSAL_ITEMS_MAX_BLOCK_NUMBER_DESC', - ProposalItemsMaxChainIdAsc = 'PROPOSAL_ITEMS_MAX_CHAIN_ID_ASC', - ProposalItemsMaxChainIdDesc = 'PROPOSAL_ITEMS_MAX_CHAIN_ID_DESC', - ProposalItemsMaxDataAsc = 'PROPOSAL_ITEMS_MAX_DATA_ASC', - ProposalItemsMaxDataDesc = 'PROPOSAL_ITEMS_MAX_DATA_DESC', - ProposalItemsMaxIdAsc = 'PROPOSAL_ITEMS_MAX_ID_ASC', - ProposalItemsMaxIdDesc = 'PROPOSAL_ITEMS_MAX_ID_DESC', - ProposalItemsMaxNonceAsc = 'PROPOSAL_ITEMS_MAX_NONCE_ASC', - ProposalItemsMaxNonceDesc = 'PROPOSAL_ITEMS_MAX_NONCE_DESC', - ProposalItemsMaxRemovedAsc = 'PROPOSAL_ITEMS_MAX_REMOVED_ASC', - ProposalItemsMaxRemovedDesc = 'PROPOSAL_ITEMS_MAX_REMOVED_DESC', - ProposalItemsMaxSignatureAsc = 'PROPOSAL_ITEMS_MAX_SIGNATURE_ASC', - ProposalItemsMaxSignatureDesc = 'PROPOSAL_ITEMS_MAX_SIGNATURE_DESC', - ProposalItemsMaxStatusAsc = 'PROPOSAL_ITEMS_MAX_STATUS_ASC', - ProposalItemsMaxStatusDesc = 'PROPOSAL_ITEMS_MAX_STATUS_DESC', - ProposalItemsMaxTypeAsc = 'PROPOSAL_ITEMS_MAX_TYPE_ASC', - ProposalItemsMaxTypeDesc = 'PROPOSAL_ITEMS_MAX_TYPE_DESC', - ProposalItemsMinBlockIdAsc = 'PROPOSAL_ITEMS_MIN_BLOCK_ID_ASC', - ProposalItemsMinBlockIdDesc = 'PROPOSAL_ITEMS_MIN_BLOCK_ID_DESC', - ProposalItemsMinBlockNumberAsc = 'PROPOSAL_ITEMS_MIN_BLOCK_NUMBER_ASC', - ProposalItemsMinBlockNumberDesc = 'PROPOSAL_ITEMS_MIN_BLOCK_NUMBER_DESC', - ProposalItemsMinChainIdAsc = 'PROPOSAL_ITEMS_MIN_CHAIN_ID_ASC', - ProposalItemsMinChainIdDesc = 'PROPOSAL_ITEMS_MIN_CHAIN_ID_DESC', - ProposalItemsMinDataAsc = 'PROPOSAL_ITEMS_MIN_DATA_ASC', - ProposalItemsMinDataDesc = 'PROPOSAL_ITEMS_MIN_DATA_DESC', - ProposalItemsMinIdAsc = 'PROPOSAL_ITEMS_MIN_ID_ASC', - ProposalItemsMinIdDesc = 'PROPOSAL_ITEMS_MIN_ID_DESC', - ProposalItemsMinNonceAsc = 'PROPOSAL_ITEMS_MIN_NONCE_ASC', - ProposalItemsMinNonceDesc = 'PROPOSAL_ITEMS_MIN_NONCE_DESC', - ProposalItemsMinRemovedAsc = 'PROPOSAL_ITEMS_MIN_REMOVED_ASC', - ProposalItemsMinRemovedDesc = 'PROPOSAL_ITEMS_MIN_REMOVED_DESC', - ProposalItemsMinSignatureAsc = 'PROPOSAL_ITEMS_MIN_SIGNATURE_ASC', - ProposalItemsMinSignatureDesc = 'PROPOSAL_ITEMS_MIN_SIGNATURE_DESC', - ProposalItemsMinStatusAsc = 'PROPOSAL_ITEMS_MIN_STATUS_ASC', - ProposalItemsMinStatusDesc = 'PROPOSAL_ITEMS_MIN_STATUS_DESC', - ProposalItemsMinTypeAsc = 'PROPOSAL_ITEMS_MIN_TYPE_ASC', - ProposalItemsMinTypeDesc = 'PROPOSAL_ITEMS_MIN_TYPE_DESC', - ProposalItemsStddevPopulationBlockIdAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_ID_ASC', - ProposalItemsStddevPopulationBlockIdDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_ID_DESC', - ProposalItemsStddevPopulationBlockNumberAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ProposalItemsStddevPopulationBlockNumberDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ProposalItemsStddevPopulationChainIdAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_CHAIN_ID_ASC', - ProposalItemsStddevPopulationChainIdDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_CHAIN_ID_DESC', - ProposalItemsStddevPopulationDataAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_DATA_ASC', - ProposalItemsStddevPopulationDataDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_DATA_DESC', - ProposalItemsStddevPopulationIdAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_ID_ASC', - ProposalItemsStddevPopulationIdDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_ID_DESC', - ProposalItemsStddevPopulationNonceAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_NONCE_ASC', - ProposalItemsStddevPopulationNonceDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_NONCE_DESC', - ProposalItemsStddevPopulationRemovedAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_REMOVED_ASC', - ProposalItemsStddevPopulationRemovedDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_REMOVED_DESC', - ProposalItemsStddevPopulationSignatureAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_SIGNATURE_ASC', - ProposalItemsStddevPopulationSignatureDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_SIGNATURE_DESC', - ProposalItemsStddevPopulationStatusAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_STATUS_ASC', - ProposalItemsStddevPopulationStatusDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_STATUS_DESC', - ProposalItemsStddevPopulationTypeAsc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_TYPE_ASC', - ProposalItemsStddevPopulationTypeDesc = 'PROPOSAL_ITEMS_STDDEV_POPULATION_TYPE_DESC', - ProposalItemsStddevSampleBlockIdAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_ID_ASC', - ProposalItemsStddevSampleBlockIdDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_ID_DESC', - ProposalItemsStddevSampleBlockNumberAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ProposalItemsStddevSampleBlockNumberDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ProposalItemsStddevSampleChainIdAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_CHAIN_ID_ASC', - ProposalItemsStddevSampleChainIdDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_CHAIN_ID_DESC', - ProposalItemsStddevSampleDataAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_DATA_ASC', - ProposalItemsStddevSampleDataDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_DATA_DESC', - ProposalItemsStddevSampleIdAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_ID_ASC', - ProposalItemsStddevSampleIdDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_ID_DESC', - ProposalItemsStddevSampleNonceAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_NONCE_ASC', - ProposalItemsStddevSampleNonceDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_NONCE_DESC', - ProposalItemsStddevSampleRemovedAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_REMOVED_ASC', - ProposalItemsStddevSampleRemovedDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_REMOVED_DESC', - ProposalItemsStddevSampleSignatureAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_SIGNATURE_ASC', - ProposalItemsStddevSampleSignatureDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_SIGNATURE_DESC', - ProposalItemsStddevSampleStatusAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_STATUS_ASC', - ProposalItemsStddevSampleStatusDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_STATUS_DESC', - ProposalItemsStddevSampleTypeAsc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_TYPE_ASC', - ProposalItemsStddevSampleTypeDesc = 'PROPOSAL_ITEMS_STDDEV_SAMPLE_TYPE_DESC', - ProposalItemsSumBlockIdAsc = 'PROPOSAL_ITEMS_SUM_BLOCK_ID_ASC', - ProposalItemsSumBlockIdDesc = 'PROPOSAL_ITEMS_SUM_BLOCK_ID_DESC', - ProposalItemsSumBlockNumberAsc = 'PROPOSAL_ITEMS_SUM_BLOCK_NUMBER_ASC', - ProposalItemsSumBlockNumberDesc = 'PROPOSAL_ITEMS_SUM_BLOCK_NUMBER_DESC', - ProposalItemsSumChainIdAsc = 'PROPOSAL_ITEMS_SUM_CHAIN_ID_ASC', - ProposalItemsSumChainIdDesc = 'PROPOSAL_ITEMS_SUM_CHAIN_ID_DESC', - ProposalItemsSumDataAsc = 'PROPOSAL_ITEMS_SUM_DATA_ASC', - ProposalItemsSumDataDesc = 'PROPOSAL_ITEMS_SUM_DATA_DESC', - ProposalItemsSumIdAsc = 'PROPOSAL_ITEMS_SUM_ID_ASC', - ProposalItemsSumIdDesc = 'PROPOSAL_ITEMS_SUM_ID_DESC', - ProposalItemsSumNonceAsc = 'PROPOSAL_ITEMS_SUM_NONCE_ASC', - ProposalItemsSumNonceDesc = 'PROPOSAL_ITEMS_SUM_NONCE_DESC', - ProposalItemsSumRemovedAsc = 'PROPOSAL_ITEMS_SUM_REMOVED_ASC', - ProposalItemsSumRemovedDesc = 'PROPOSAL_ITEMS_SUM_REMOVED_DESC', - ProposalItemsSumSignatureAsc = 'PROPOSAL_ITEMS_SUM_SIGNATURE_ASC', - ProposalItemsSumSignatureDesc = 'PROPOSAL_ITEMS_SUM_SIGNATURE_DESC', - ProposalItemsSumStatusAsc = 'PROPOSAL_ITEMS_SUM_STATUS_ASC', - ProposalItemsSumStatusDesc = 'PROPOSAL_ITEMS_SUM_STATUS_DESC', - ProposalItemsSumTypeAsc = 'PROPOSAL_ITEMS_SUM_TYPE_ASC', - ProposalItemsSumTypeDesc = 'PROPOSAL_ITEMS_SUM_TYPE_DESC', - ProposalItemsVariancePopulationBlockIdAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_ID_ASC', - ProposalItemsVariancePopulationBlockIdDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_ID_DESC', - ProposalItemsVariancePopulationBlockNumberAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ProposalItemsVariancePopulationBlockNumberDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ProposalItemsVariancePopulationChainIdAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_CHAIN_ID_ASC', - ProposalItemsVariancePopulationChainIdDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_CHAIN_ID_DESC', - ProposalItemsVariancePopulationDataAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_DATA_ASC', - ProposalItemsVariancePopulationDataDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_DATA_DESC', - ProposalItemsVariancePopulationIdAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_ID_ASC', - ProposalItemsVariancePopulationIdDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_ID_DESC', - ProposalItemsVariancePopulationNonceAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_NONCE_ASC', - ProposalItemsVariancePopulationNonceDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_NONCE_DESC', - ProposalItemsVariancePopulationRemovedAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_REMOVED_ASC', - ProposalItemsVariancePopulationRemovedDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_REMOVED_DESC', - ProposalItemsVariancePopulationSignatureAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_SIGNATURE_ASC', - ProposalItemsVariancePopulationSignatureDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_SIGNATURE_DESC', - ProposalItemsVariancePopulationStatusAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_STATUS_ASC', - ProposalItemsVariancePopulationStatusDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_STATUS_DESC', - ProposalItemsVariancePopulationTypeAsc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_TYPE_ASC', - ProposalItemsVariancePopulationTypeDesc = 'PROPOSAL_ITEMS_VARIANCE_POPULATION_TYPE_DESC', - ProposalItemsVarianceSampleBlockIdAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ProposalItemsVarianceSampleBlockIdDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ProposalItemsVarianceSampleBlockNumberAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ProposalItemsVarianceSampleBlockNumberDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ProposalItemsVarianceSampleChainIdAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_CHAIN_ID_ASC', - ProposalItemsVarianceSampleChainIdDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_CHAIN_ID_DESC', - ProposalItemsVarianceSampleDataAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_DATA_ASC', - ProposalItemsVarianceSampleDataDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_DATA_DESC', - ProposalItemsVarianceSampleIdAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_ID_ASC', - ProposalItemsVarianceSampleIdDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_ID_DESC', - ProposalItemsVarianceSampleNonceAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_NONCE_ASC', - ProposalItemsVarianceSampleNonceDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_NONCE_DESC', - ProposalItemsVarianceSampleRemovedAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_REMOVED_ASC', - ProposalItemsVarianceSampleRemovedDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_REMOVED_DESC', - ProposalItemsVarianceSampleSignatureAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_SIGNATURE_ASC', - ProposalItemsVarianceSampleSignatureDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_SIGNATURE_DESC', - ProposalItemsVarianceSampleStatusAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_STATUS_ASC', - ProposalItemsVarianceSampleStatusDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_STATUS_DESC', - ProposalItemsVarianceSampleTypeAsc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_TYPE_ASC', - ProposalItemsVarianceSampleTypeDesc = 'PROPOSAL_ITEMS_VARIANCE_SAMPLE_TYPE_DESC', - ProposalVotesAverageBlockIdAsc = 'PROPOSAL_VOTES_AVERAGE_BLOCK_ID_ASC', - ProposalVotesAverageBlockIdDesc = 'PROPOSAL_VOTES_AVERAGE_BLOCK_ID_DESC', - ProposalVotesAverageBlockNumberAsc = 'PROPOSAL_VOTES_AVERAGE_BLOCK_NUMBER_ASC', - ProposalVotesAverageBlockNumberDesc = 'PROPOSAL_VOTES_AVERAGE_BLOCK_NUMBER_DESC', - ProposalVotesAverageIdAsc = 'PROPOSAL_VOTES_AVERAGE_ID_ASC', - ProposalVotesAverageIdDesc = 'PROPOSAL_VOTES_AVERAGE_ID_DESC', - ProposalVotesAverageProposalIdAsc = 'PROPOSAL_VOTES_AVERAGE_PROPOSAL_ID_ASC', - ProposalVotesAverageProposalIdDesc = 'PROPOSAL_VOTES_AVERAGE_PROPOSAL_ID_DESC', - ProposalVotesAverageVoterIdAsc = 'PROPOSAL_VOTES_AVERAGE_VOTER_ID_ASC', - ProposalVotesAverageVoterIdDesc = 'PROPOSAL_VOTES_AVERAGE_VOTER_ID_DESC', - ProposalVotesAverageVoteStatusAsc = 'PROPOSAL_VOTES_AVERAGE_VOTE_STATUS_ASC', - ProposalVotesAverageVoteStatusDesc = 'PROPOSAL_VOTES_AVERAGE_VOTE_STATUS_DESC', - ProposalVotesCountAsc = 'PROPOSAL_VOTES_COUNT_ASC', - ProposalVotesCountDesc = 'PROPOSAL_VOTES_COUNT_DESC', - ProposalVotesDistinctCountBlockIdAsc = 'PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_ID_ASC', - ProposalVotesDistinctCountBlockIdDesc = 'PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_ID_DESC', - ProposalVotesDistinctCountBlockNumberAsc = 'PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ProposalVotesDistinctCountBlockNumberDesc = 'PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ProposalVotesDistinctCountIdAsc = 'PROPOSAL_VOTES_DISTINCT_COUNT_ID_ASC', - ProposalVotesDistinctCountIdDesc = 'PROPOSAL_VOTES_DISTINCT_COUNT_ID_DESC', - ProposalVotesDistinctCountProposalIdAsc = 'PROPOSAL_VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC', - ProposalVotesDistinctCountProposalIdDesc = 'PROPOSAL_VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC', - ProposalVotesDistinctCountVoterIdAsc = 'PROPOSAL_VOTES_DISTINCT_COUNT_VOTER_ID_ASC', - ProposalVotesDistinctCountVoterIdDesc = 'PROPOSAL_VOTES_DISTINCT_COUNT_VOTER_ID_DESC', - ProposalVotesDistinctCountVoteStatusAsc = 'PROPOSAL_VOTES_DISTINCT_COUNT_VOTE_STATUS_ASC', - ProposalVotesDistinctCountVoteStatusDesc = 'PROPOSAL_VOTES_DISTINCT_COUNT_VOTE_STATUS_DESC', - ProposalVotesMaxBlockIdAsc = 'PROPOSAL_VOTES_MAX_BLOCK_ID_ASC', - ProposalVotesMaxBlockIdDesc = 'PROPOSAL_VOTES_MAX_BLOCK_ID_DESC', - ProposalVotesMaxBlockNumberAsc = 'PROPOSAL_VOTES_MAX_BLOCK_NUMBER_ASC', - ProposalVotesMaxBlockNumberDesc = 'PROPOSAL_VOTES_MAX_BLOCK_NUMBER_DESC', - ProposalVotesMaxIdAsc = 'PROPOSAL_VOTES_MAX_ID_ASC', - ProposalVotesMaxIdDesc = 'PROPOSAL_VOTES_MAX_ID_DESC', - ProposalVotesMaxProposalIdAsc = 'PROPOSAL_VOTES_MAX_PROPOSAL_ID_ASC', - ProposalVotesMaxProposalIdDesc = 'PROPOSAL_VOTES_MAX_PROPOSAL_ID_DESC', - ProposalVotesMaxVoterIdAsc = 'PROPOSAL_VOTES_MAX_VOTER_ID_ASC', - ProposalVotesMaxVoterIdDesc = 'PROPOSAL_VOTES_MAX_VOTER_ID_DESC', - ProposalVotesMaxVoteStatusAsc = 'PROPOSAL_VOTES_MAX_VOTE_STATUS_ASC', - ProposalVotesMaxVoteStatusDesc = 'PROPOSAL_VOTES_MAX_VOTE_STATUS_DESC', - ProposalVotesMinBlockIdAsc = 'PROPOSAL_VOTES_MIN_BLOCK_ID_ASC', - ProposalVotesMinBlockIdDesc = 'PROPOSAL_VOTES_MIN_BLOCK_ID_DESC', - ProposalVotesMinBlockNumberAsc = 'PROPOSAL_VOTES_MIN_BLOCK_NUMBER_ASC', - ProposalVotesMinBlockNumberDesc = 'PROPOSAL_VOTES_MIN_BLOCK_NUMBER_DESC', - ProposalVotesMinIdAsc = 'PROPOSAL_VOTES_MIN_ID_ASC', - ProposalVotesMinIdDesc = 'PROPOSAL_VOTES_MIN_ID_DESC', - ProposalVotesMinProposalIdAsc = 'PROPOSAL_VOTES_MIN_PROPOSAL_ID_ASC', - ProposalVotesMinProposalIdDesc = 'PROPOSAL_VOTES_MIN_PROPOSAL_ID_DESC', - ProposalVotesMinVoterIdAsc = 'PROPOSAL_VOTES_MIN_VOTER_ID_ASC', - ProposalVotesMinVoterIdDesc = 'PROPOSAL_VOTES_MIN_VOTER_ID_DESC', - ProposalVotesMinVoteStatusAsc = 'PROPOSAL_VOTES_MIN_VOTE_STATUS_ASC', - ProposalVotesMinVoteStatusDesc = 'PROPOSAL_VOTES_MIN_VOTE_STATUS_DESC', - ProposalVotesStddevPopulationBlockIdAsc = 'PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_ID_ASC', - ProposalVotesStddevPopulationBlockIdDesc = 'PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_ID_DESC', - ProposalVotesStddevPopulationBlockNumberAsc = 'PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ProposalVotesStddevPopulationBlockNumberDesc = 'PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ProposalVotesStddevPopulationIdAsc = 'PROPOSAL_VOTES_STDDEV_POPULATION_ID_ASC', - ProposalVotesStddevPopulationIdDesc = 'PROPOSAL_VOTES_STDDEV_POPULATION_ID_DESC', - ProposalVotesStddevPopulationProposalIdAsc = 'PROPOSAL_VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC', - ProposalVotesStddevPopulationProposalIdDesc = 'PROPOSAL_VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC', - ProposalVotesStddevPopulationVoterIdAsc = 'PROPOSAL_VOTES_STDDEV_POPULATION_VOTER_ID_ASC', - ProposalVotesStddevPopulationVoterIdDesc = 'PROPOSAL_VOTES_STDDEV_POPULATION_VOTER_ID_DESC', - ProposalVotesStddevPopulationVoteStatusAsc = 'PROPOSAL_VOTES_STDDEV_POPULATION_VOTE_STATUS_ASC', - ProposalVotesStddevPopulationVoteStatusDesc = 'PROPOSAL_VOTES_STDDEV_POPULATION_VOTE_STATUS_DESC', - ProposalVotesStddevSampleBlockIdAsc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_ID_ASC', - ProposalVotesStddevSampleBlockIdDesc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_ID_DESC', - ProposalVotesStddevSampleBlockNumberAsc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ProposalVotesStddevSampleBlockNumberDesc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ProposalVotesStddevSampleIdAsc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_ID_ASC', - ProposalVotesStddevSampleIdDesc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_ID_DESC', - ProposalVotesStddevSampleProposalIdAsc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC', - ProposalVotesStddevSampleProposalIdDesc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC', - ProposalVotesStddevSampleVoterIdAsc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_VOTER_ID_ASC', - ProposalVotesStddevSampleVoterIdDesc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_VOTER_ID_DESC', - ProposalVotesStddevSampleVoteStatusAsc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_VOTE_STATUS_ASC', - ProposalVotesStddevSampleVoteStatusDesc = 'PROPOSAL_VOTES_STDDEV_SAMPLE_VOTE_STATUS_DESC', - ProposalVotesSumBlockIdAsc = 'PROPOSAL_VOTES_SUM_BLOCK_ID_ASC', - ProposalVotesSumBlockIdDesc = 'PROPOSAL_VOTES_SUM_BLOCK_ID_DESC', - ProposalVotesSumBlockNumberAsc = 'PROPOSAL_VOTES_SUM_BLOCK_NUMBER_ASC', - ProposalVotesSumBlockNumberDesc = 'PROPOSAL_VOTES_SUM_BLOCK_NUMBER_DESC', - ProposalVotesSumIdAsc = 'PROPOSAL_VOTES_SUM_ID_ASC', - ProposalVotesSumIdDesc = 'PROPOSAL_VOTES_SUM_ID_DESC', - ProposalVotesSumProposalIdAsc = 'PROPOSAL_VOTES_SUM_PROPOSAL_ID_ASC', - ProposalVotesSumProposalIdDesc = 'PROPOSAL_VOTES_SUM_PROPOSAL_ID_DESC', - ProposalVotesSumVoterIdAsc = 'PROPOSAL_VOTES_SUM_VOTER_ID_ASC', - ProposalVotesSumVoterIdDesc = 'PROPOSAL_VOTES_SUM_VOTER_ID_DESC', - ProposalVotesSumVoteStatusAsc = 'PROPOSAL_VOTES_SUM_VOTE_STATUS_ASC', - ProposalVotesSumVoteStatusDesc = 'PROPOSAL_VOTES_SUM_VOTE_STATUS_DESC', - ProposalVotesVariancePopulationBlockIdAsc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_ID_ASC', - ProposalVotesVariancePopulationBlockIdDesc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_ID_DESC', - ProposalVotesVariancePopulationBlockNumberAsc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ProposalVotesVariancePopulationBlockNumberDesc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ProposalVotesVariancePopulationIdAsc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_ID_ASC', - ProposalVotesVariancePopulationIdDesc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_ID_DESC', - ProposalVotesVariancePopulationProposalIdAsc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC', - ProposalVotesVariancePopulationProposalIdDesc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC', - ProposalVotesVariancePopulationVoterIdAsc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_VOTER_ID_ASC', - ProposalVotesVariancePopulationVoterIdDesc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_VOTER_ID_DESC', - ProposalVotesVariancePopulationVoteStatusAsc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_VOTE_STATUS_ASC', - ProposalVotesVariancePopulationVoteStatusDesc = 'PROPOSAL_VOTES_VARIANCE_POPULATION_VOTE_STATUS_DESC', - ProposalVotesVarianceSampleBlockIdAsc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ProposalVotesVarianceSampleBlockIdDesc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ProposalVotesVarianceSampleBlockNumberAsc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ProposalVotesVarianceSampleBlockNumberDesc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ProposalVotesVarianceSampleIdAsc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_ID_ASC', - ProposalVotesVarianceSampleIdDesc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_ID_DESC', - ProposalVotesVarianceSampleProposalIdAsc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', - ProposalVotesVarianceSampleProposalIdDesc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', - ProposalVotesVarianceSampleVoterIdAsc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTER_ID_ASC', - ProposalVotesVarianceSampleVoterIdDesc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTER_ID_DESC', - ProposalVotesVarianceSampleVoteStatusAsc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTE_STATUS_ASC', - ProposalVotesVarianceSampleVoteStatusDesc = 'PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTE_STATUS_DESC', - ProposerThresholdsAverageBlockIdAsc = 'PROPOSER_THRESHOLDS_AVERAGE_BLOCK_ID_ASC', - ProposerThresholdsAverageBlockIdDesc = 'PROPOSER_THRESHOLDS_AVERAGE_BLOCK_ID_DESC', - ProposerThresholdsAverageIdAsc = 'PROPOSER_THRESHOLDS_AVERAGE_ID_ASC', - ProposerThresholdsAverageIdDesc = 'PROPOSER_THRESHOLDS_AVERAGE_ID_DESC', - ProposerThresholdsAverageValueAsc = 'PROPOSER_THRESHOLDS_AVERAGE_VALUE_ASC', - ProposerThresholdsAverageValueDesc = 'PROPOSER_THRESHOLDS_AVERAGE_VALUE_DESC', - ProposerThresholdsCountAsc = 'PROPOSER_THRESHOLDS_COUNT_ASC', - ProposerThresholdsCountDesc = 'PROPOSER_THRESHOLDS_COUNT_DESC', - ProposerThresholdsDistinctCountBlockIdAsc = 'PROPOSER_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC', - ProposerThresholdsDistinctCountBlockIdDesc = 'PROPOSER_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC', - ProposerThresholdsDistinctCountIdAsc = 'PROPOSER_THRESHOLDS_DISTINCT_COUNT_ID_ASC', - ProposerThresholdsDistinctCountIdDesc = 'PROPOSER_THRESHOLDS_DISTINCT_COUNT_ID_DESC', - ProposerThresholdsDistinctCountValueAsc = 'PROPOSER_THRESHOLDS_DISTINCT_COUNT_VALUE_ASC', - ProposerThresholdsDistinctCountValueDesc = 'PROPOSER_THRESHOLDS_DISTINCT_COUNT_VALUE_DESC', - ProposerThresholdsMaxBlockIdAsc = 'PROPOSER_THRESHOLDS_MAX_BLOCK_ID_ASC', - ProposerThresholdsMaxBlockIdDesc = 'PROPOSER_THRESHOLDS_MAX_BLOCK_ID_DESC', - ProposerThresholdsMaxIdAsc = 'PROPOSER_THRESHOLDS_MAX_ID_ASC', - ProposerThresholdsMaxIdDesc = 'PROPOSER_THRESHOLDS_MAX_ID_DESC', - ProposerThresholdsMaxValueAsc = 'PROPOSER_THRESHOLDS_MAX_VALUE_ASC', - ProposerThresholdsMaxValueDesc = 'PROPOSER_THRESHOLDS_MAX_VALUE_DESC', - ProposerThresholdsMinBlockIdAsc = 'PROPOSER_THRESHOLDS_MIN_BLOCK_ID_ASC', - ProposerThresholdsMinBlockIdDesc = 'PROPOSER_THRESHOLDS_MIN_BLOCK_ID_DESC', - ProposerThresholdsMinIdAsc = 'PROPOSER_THRESHOLDS_MIN_ID_ASC', - ProposerThresholdsMinIdDesc = 'PROPOSER_THRESHOLDS_MIN_ID_DESC', - ProposerThresholdsMinValueAsc = 'PROPOSER_THRESHOLDS_MIN_VALUE_ASC', - ProposerThresholdsMinValueDesc = 'PROPOSER_THRESHOLDS_MIN_VALUE_DESC', - ProposerThresholdsStddevPopulationBlockIdAsc = 'PROPOSER_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC', - ProposerThresholdsStddevPopulationBlockIdDesc = 'PROPOSER_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC', - ProposerThresholdsStddevPopulationIdAsc = 'PROPOSER_THRESHOLDS_STDDEV_POPULATION_ID_ASC', - ProposerThresholdsStddevPopulationIdDesc = 'PROPOSER_THRESHOLDS_STDDEV_POPULATION_ID_DESC', - ProposerThresholdsStddevPopulationValueAsc = 'PROPOSER_THRESHOLDS_STDDEV_POPULATION_VALUE_ASC', - ProposerThresholdsStddevPopulationValueDesc = 'PROPOSER_THRESHOLDS_STDDEV_POPULATION_VALUE_DESC', - ProposerThresholdsStddevSampleBlockIdAsc = 'PROPOSER_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC', - ProposerThresholdsStddevSampleBlockIdDesc = 'PROPOSER_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC', - ProposerThresholdsStddevSampleIdAsc = 'PROPOSER_THRESHOLDS_STDDEV_SAMPLE_ID_ASC', - ProposerThresholdsStddevSampleIdDesc = 'PROPOSER_THRESHOLDS_STDDEV_SAMPLE_ID_DESC', - ProposerThresholdsStddevSampleValueAsc = 'PROPOSER_THRESHOLDS_STDDEV_SAMPLE_VALUE_ASC', - ProposerThresholdsStddevSampleValueDesc = 'PROPOSER_THRESHOLDS_STDDEV_SAMPLE_VALUE_DESC', - ProposerThresholdsSumBlockIdAsc = 'PROPOSER_THRESHOLDS_SUM_BLOCK_ID_ASC', - ProposerThresholdsSumBlockIdDesc = 'PROPOSER_THRESHOLDS_SUM_BLOCK_ID_DESC', - ProposerThresholdsSumIdAsc = 'PROPOSER_THRESHOLDS_SUM_ID_ASC', - ProposerThresholdsSumIdDesc = 'PROPOSER_THRESHOLDS_SUM_ID_DESC', - ProposerThresholdsSumValueAsc = 'PROPOSER_THRESHOLDS_SUM_VALUE_ASC', - ProposerThresholdsSumValueDesc = 'PROPOSER_THRESHOLDS_SUM_VALUE_DESC', - ProposerThresholdsVariancePopulationBlockIdAsc = 'PROPOSER_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC', - ProposerThresholdsVariancePopulationBlockIdDesc = 'PROPOSER_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC', - ProposerThresholdsVariancePopulationIdAsc = 'PROPOSER_THRESHOLDS_VARIANCE_POPULATION_ID_ASC', - ProposerThresholdsVariancePopulationIdDesc = 'PROPOSER_THRESHOLDS_VARIANCE_POPULATION_ID_DESC', - ProposerThresholdsVariancePopulationValueAsc = 'PROPOSER_THRESHOLDS_VARIANCE_POPULATION_VALUE_ASC', - ProposerThresholdsVariancePopulationValueDesc = 'PROPOSER_THRESHOLDS_VARIANCE_POPULATION_VALUE_DESC', - ProposerThresholdsVarianceSampleBlockIdAsc = 'PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ProposerThresholdsVarianceSampleBlockIdDesc = 'PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ProposerThresholdsVarianceSampleIdAsc = 'PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC', - ProposerThresholdsVarianceSampleIdDesc = 'PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC', - ProposerThresholdsVarianceSampleValueAsc = 'PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_VALUE_ASC', - ProposerThresholdsVarianceSampleValueDesc = 'PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_VALUE_DESC', - PublicKeysAverageBlockIdAsc = 'PUBLIC_KEYS_AVERAGE_BLOCK_ID_ASC', - PublicKeysAverageBlockIdDesc = 'PUBLIC_KEYS_AVERAGE_BLOCK_ID_DESC', - PublicKeysAverageCompressedAsc = 'PUBLIC_KEYS_AVERAGE_COMPRESSED_ASC', - PublicKeysAverageCompressedDesc = 'PUBLIC_KEYS_AVERAGE_COMPRESSED_DESC', - PublicKeysAverageHistoryAsc = 'PUBLIC_KEYS_AVERAGE_HISTORY_ASC', - PublicKeysAverageHistoryDesc = 'PUBLIC_KEYS_AVERAGE_HISTORY_DESC', - PublicKeysAverageIdAsc = 'PUBLIC_KEYS_AVERAGE_ID_ASC', - PublicKeysAverageIdDesc = 'PUBLIC_KEYS_AVERAGE_ID_DESC', - PublicKeysAverageUncompressedAsc = 'PUBLIC_KEYS_AVERAGE_UNCOMPRESSED_ASC', - PublicKeysAverageUncompressedDesc = 'PUBLIC_KEYS_AVERAGE_UNCOMPRESSED_DESC', - PublicKeysCountAsc = 'PUBLIC_KEYS_COUNT_ASC', - PublicKeysCountDesc = 'PUBLIC_KEYS_COUNT_DESC', - PublicKeysDistinctCountBlockIdAsc = 'PUBLIC_KEYS_DISTINCT_COUNT_BLOCK_ID_ASC', - PublicKeysDistinctCountBlockIdDesc = 'PUBLIC_KEYS_DISTINCT_COUNT_BLOCK_ID_DESC', - PublicKeysDistinctCountCompressedAsc = 'PUBLIC_KEYS_DISTINCT_COUNT_COMPRESSED_ASC', - PublicKeysDistinctCountCompressedDesc = 'PUBLIC_KEYS_DISTINCT_COUNT_COMPRESSED_DESC', - PublicKeysDistinctCountHistoryAsc = 'PUBLIC_KEYS_DISTINCT_COUNT_HISTORY_ASC', - PublicKeysDistinctCountHistoryDesc = 'PUBLIC_KEYS_DISTINCT_COUNT_HISTORY_DESC', - PublicKeysDistinctCountIdAsc = 'PUBLIC_KEYS_DISTINCT_COUNT_ID_ASC', - PublicKeysDistinctCountIdDesc = 'PUBLIC_KEYS_DISTINCT_COUNT_ID_DESC', - PublicKeysDistinctCountUncompressedAsc = 'PUBLIC_KEYS_DISTINCT_COUNT_UNCOMPRESSED_ASC', - PublicKeysDistinctCountUncompressedDesc = 'PUBLIC_KEYS_DISTINCT_COUNT_UNCOMPRESSED_DESC', - PublicKeysMaxBlockIdAsc = 'PUBLIC_KEYS_MAX_BLOCK_ID_ASC', - PublicKeysMaxBlockIdDesc = 'PUBLIC_KEYS_MAX_BLOCK_ID_DESC', - PublicKeysMaxCompressedAsc = 'PUBLIC_KEYS_MAX_COMPRESSED_ASC', - PublicKeysMaxCompressedDesc = 'PUBLIC_KEYS_MAX_COMPRESSED_DESC', - PublicKeysMaxHistoryAsc = 'PUBLIC_KEYS_MAX_HISTORY_ASC', - PublicKeysMaxHistoryDesc = 'PUBLIC_KEYS_MAX_HISTORY_DESC', - PublicKeysMaxIdAsc = 'PUBLIC_KEYS_MAX_ID_ASC', - PublicKeysMaxIdDesc = 'PUBLIC_KEYS_MAX_ID_DESC', - PublicKeysMaxUncompressedAsc = 'PUBLIC_KEYS_MAX_UNCOMPRESSED_ASC', - PublicKeysMaxUncompressedDesc = 'PUBLIC_KEYS_MAX_UNCOMPRESSED_DESC', - PublicKeysMinBlockIdAsc = 'PUBLIC_KEYS_MIN_BLOCK_ID_ASC', - PublicKeysMinBlockIdDesc = 'PUBLIC_KEYS_MIN_BLOCK_ID_DESC', - PublicKeysMinCompressedAsc = 'PUBLIC_KEYS_MIN_COMPRESSED_ASC', - PublicKeysMinCompressedDesc = 'PUBLIC_KEYS_MIN_COMPRESSED_DESC', - PublicKeysMinHistoryAsc = 'PUBLIC_KEYS_MIN_HISTORY_ASC', - PublicKeysMinHistoryDesc = 'PUBLIC_KEYS_MIN_HISTORY_DESC', - PublicKeysMinIdAsc = 'PUBLIC_KEYS_MIN_ID_ASC', - PublicKeysMinIdDesc = 'PUBLIC_KEYS_MIN_ID_DESC', - PublicKeysMinUncompressedAsc = 'PUBLIC_KEYS_MIN_UNCOMPRESSED_ASC', - PublicKeysMinUncompressedDesc = 'PUBLIC_KEYS_MIN_UNCOMPRESSED_DESC', - PublicKeysStddevPopulationBlockIdAsc = 'PUBLIC_KEYS_STDDEV_POPULATION_BLOCK_ID_ASC', - PublicKeysStddevPopulationBlockIdDesc = 'PUBLIC_KEYS_STDDEV_POPULATION_BLOCK_ID_DESC', - PublicKeysStddevPopulationCompressedAsc = 'PUBLIC_KEYS_STDDEV_POPULATION_COMPRESSED_ASC', - PublicKeysStddevPopulationCompressedDesc = 'PUBLIC_KEYS_STDDEV_POPULATION_COMPRESSED_DESC', - PublicKeysStddevPopulationHistoryAsc = 'PUBLIC_KEYS_STDDEV_POPULATION_HISTORY_ASC', - PublicKeysStddevPopulationHistoryDesc = 'PUBLIC_KEYS_STDDEV_POPULATION_HISTORY_DESC', - PublicKeysStddevPopulationIdAsc = 'PUBLIC_KEYS_STDDEV_POPULATION_ID_ASC', - PublicKeysStddevPopulationIdDesc = 'PUBLIC_KEYS_STDDEV_POPULATION_ID_DESC', - PublicKeysStddevPopulationUncompressedAsc = 'PUBLIC_KEYS_STDDEV_POPULATION_UNCOMPRESSED_ASC', - PublicKeysStddevPopulationUncompressedDesc = 'PUBLIC_KEYS_STDDEV_POPULATION_UNCOMPRESSED_DESC', - PublicKeysStddevSampleBlockIdAsc = 'PUBLIC_KEYS_STDDEV_SAMPLE_BLOCK_ID_ASC', - PublicKeysStddevSampleBlockIdDesc = 'PUBLIC_KEYS_STDDEV_SAMPLE_BLOCK_ID_DESC', - PublicKeysStddevSampleCompressedAsc = 'PUBLIC_KEYS_STDDEV_SAMPLE_COMPRESSED_ASC', - PublicKeysStddevSampleCompressedDesc = 'PUBLIC_KEYS_STDDEV_SAMPLE_COMPRESSED_DESC', - PublicKeysStddevSampleHistoryAsc = 'PUBLIC_KEYS_STDDEV_SAMPLE_HISTORY_ASC', - PublicKeysStddevSampleHistoryDesc = 'PUBLIC_KEYS_STDDEV_SAMPLE_HISTORY_DESC', - PublicKeysStddevSampleIdAsc = 'PUBLIC_KEYS_STDDEV_SAMPLE_ID_ASC', - PublicKeysStddevSampleIdDesc = 'PUBLIC_KEYS_STDDEV_SAMPLE_ID_DESC', - PublicKeysStddevSampleUncompressedAsc = 'PUBLIC_KEYS_STDDEV_SAMPLE_UNCOMPRESSED_ASC', - PublicKeysStddevSampleUncompressedDesc = 'PUBLIC_KEYS_STDDEV_SAMPLE_UNCOMPRESSED_DESC', - PublicKeysSumBlockIdAsc = 'PUBLIC_KEYS_SUM_BLOCK_ID_ASC', - PublicKeysSumBlockIdDesc = 'PUBLIC_KEYS_SUM_BLOCK_ID_DESC', - PublicKeysSumCompressedAsc = 'PUBLIC_KEYS_SUM_COMPRESSED_ASC', - PublicKeysSumCompressedDesc = 'PUBLIC_KEYS_SUM_COMPRESSED_DESC', - PublicKeysSumHistoryAsc = 'PUBLIC_KEYS_SUM_HISTORY_ASC', - PublicKeysSumHistoryDesc = 'PUBLIC_KEYS_SUM_HISTORY_DESC', - PublicKeysSumIdAsc = 'PUBLIC_KEYS_SUM_ID_ASC', - PublicKeysSumIdDesc = 'PUBLIC_KEYS_SUM_ID_DESC', - PublicKeysSumUncompressedAsc = 'PUBLIC_KEYS_SUM_UNCOMPRESSED_ASC', - PublicKeysSumUncompressedDesc = 'PUBLIC_KEYS_SUM_UNCOMPRESSED_DESC', - PublicKeysVariancePopulationBlockIdAsc = 'PUBLIC_KEYS_VARIANCE_POPULATION_BLOCK_ID_ASC', - PublicKeysVariancePopulationBlockIdDesc = 'PUBLIC_KEYS_VARIANCE_POPULATION_BLOCK_ID_DESC', - PublicKeysVariancePopulationCompressedAsc = 'PUBLIC_KEYS_VARIANCE_POPULATION_COMPRESSED_ASC', - PublicKeysVariancePopulationCompressedDesc = 'PUBLIC_KEYS_VARIANCE_POPULATION_COMPRESSED_DESC', - PublicKeysVariancePopulationHistoryAsc = 'PUBLIC_KEYS_VARIANCE_POPULATION_HISTORY_ASC', - PublicKeysVariancePopulationHistoryDesc = 'PUBLIC_KEYS_VARIANCE_POPULATION_HISTORY_DESC', - PublicKeysVariancePopulationIdAsc = 'PUBLIC_KEYS_VARIANCE_POPULATION_ID_ASC', - PublicKeysVariancePopulationIdDesc = 'PUBLIC_KEYS_VARIANCE_POPULATION_ID_DESC', - PublicKeysVariancePopulationUncompressedAsc = 'PUBLIC_KEYS_VARIANCE_POPULATION_UNCOMPRESSED_ASC', - PublicKeysVariancePopulationUncompressedDesc = 'PUBLIC_KEYS_VARIANCE_POPULATION_UNCOMPRESSED_DESC', - PublicKeysVarianceSampleBlockIdAsc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - PublicKeysVarianceSampleBlockIdDesc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - PublicKeysVarianceSampleCompressedAsc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_COMPRESSED_ASC', - PublicKeysVarianceSampleCompressedDesc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_COMPRESSED_DESC', - PublicKeysVarianceSampleHistoryAsc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_HISTORY_ASC', - PublicKeysVarianceSampleHistoryDesc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_HISTORY_DESC', - PublicKeysVarianceSampleIdAsc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_ID_ASC', - PublicKeysVarianceSampleIdDesc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_ID_DESC', - PublicKeysVarianceSampleUncompressedAsc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_UNCOMPRESSED_ASC', - PublicKeysVarianceSampleUncompressedDesc = 'PUBLIC_KEYS_VARIANCE_SAMPLE_UNCOMPRESSED_DESC', - SessionsAverageBlockIdAsc = 'SESSIONS_AVERAGE_BLOCK_ID_ASC', - SessionsAverageBlockIdDesc = 'SESSIONS_AVERAGE_BLOCK_ID_DESC', - SessionsAverageBlockNumberAsc = 'SESSIONS_AVERAGE_BLOCK_NUMBER_ASC', - SessionsAverageBlockNumberDesc = 'SESSIONS_AVERAGE_BLOCK_NUMBER_DESC', - SessionsAverageIdAsc = 'SESSIONS_AVERAGE_ID_ASC', - SessionsAverageIdDesc = 'SESSIONS_AVERAGE_ID_DESC', - SessionsAveragePublicKeyIdAsc = 'SESSIONS_AVERAGE_PUBLIC_KEY_ID_ASC', - SessionsAveragePublicKeyIdDesc = 'SESSIONS_AVERAGE_PUBLIC_KEY_ID_DESC', - SessionsCountAsc = 'SESSIONS_COUNT_ASC', - SessionsCountDesc = 'SESSIONS_COUNT_DESC', - SessionsDistinctCountBlockIdAsc = 'SESSIONS_DISTINCT_COUNT_BLOCK_ID_ASC', - SessionsDistinctCountBlockIdDesc = 'SESSIONS_DISTINCT_COUNT_BLOCK_ID_DESC', - SessionsDistinctCountBlockNumberAsc = 'SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - SessionsDistinctCountBlockNumberDesc = 'SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - SessionsDistinctCountIdAsc = 'SESSIONS_DISTINCT_COUNT_ID_ASC', - SessionsDistinctCountIdDesc = 'SESSIONS_DISTINCT_COUNT_ID_DESC', - SessionsDistinctCountPublicKeyIdAsc = 'SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_ASC', - SessionsDistinctCountPublicKeyIdDesc = 'SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_DESC', - SessionsMaxBlockIdAsc = 'SESSIONS_MAX_BLOCK_ID_ASC', - SessionsMaxBlockIdDesc = 'SESSIONS_MAX_BLOCK_ID_DESC', - SessionsMaxBlockNumberAsc = 'SESSIONS_MAX_BLOCK_NUMBER_ASC', - SessionsMaxBlockNumberDesc = 'SESSIONS_MAX_BLOCK_NUMBER_DESC', - SessionsMaxIdAsc = 'SESSIONS_MAX_ID_ASC', - SessionsMaxIdDesc = 'SESSIONS_MAX_ID_DESC', - SessionsMaxPublicKeyIdAsc = 'SESSIONS_MAX_PUBLIC_KEY_ID_ASC', - SessionsMaxPublicKeyIdDesc = 'SESSIONS_MAX_PUBLIC_KEY_ID_DESC', - SessionsMinBlockIdAsc = 'SESSIONS_MIN_BLOCK_ID_ASC', - SessionsMinBlockIdDesc = 'SESSIONS_MIN_BLOCK_ID_DESC', - SessionsMinBlockNumberAsc = 'SESSIONS_MIN_BLOCK_NUMBER_ASC', - SessionsMinBlockNumberDesc = 'SESSIONS_MIN_BLOCK_NUMBER_DESC', - SessionsMinIdAsc = 'SESSIONS_MIN_ID_ASC', - SessionsMinIdDesc = 'SESSIONS_MIN_ID_DESC', - SessionsMinPublicKeyIdAsc = 'SESSIONS_MIN_PUBLIC_KEY_ID_ASC', - SessionsMinPublicKeyIdDesc = 'SESSIONS_MIN_PUBLIC_KEY_ID_DESC', - SessionsStddevPopulationBlockIdAsc = 'SESSIONS_STDDEV_POPULATION_BLOCK_ID_ASC', - SessionsStddevPopulationBlockIdDesc = 'SESSIONS_STDDEV_POPULATION_BLOCK_ID_DESC', - SessionsStddevPopulationBlockNumberAsc = 'SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - SessionsStddevPopulationBlockNumberDesc = 'SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - SessionsStddevPopulationIdAsc = 'SESSIONS_STDDEV_POPULATION_ID_ASC', - SessionsStddevPopulationIdDesc = 'SESSIONS_STDDEV_POPULATION_ID_DESC', - SessionsStddevPopulationPublicKeyIdAsc = 'SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_ASC', - SessionsStddevPopulationPublicKeyIdDesc = 'SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_DESC', - SessionsStddevSampleBlockIdAsc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_ID_ASC', - SessionsStddevSampleBlockIdDesc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_ID_DESC', - SessionsStddevSampleBlockNumberAsc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - SessionsStddevSampleBlockNumberDesc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - SessionsStddevSampleIdAsc = 'SESSIONS_STDDEV_SAMPLE_ID_ASC', - SessionsStddevSampleIdDesc = 'SESSIONS_STDDEV_SAMPLE_ID_DESC', - SessionsStddevSamplePublicKeyIdAsc = 'SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_ASC', - SessionsStddevSamplePublicKeyIdDesc = 'SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_DESC', - SessionsSumBlockIdAsc = 'SESSIONS_SUM_BLOCK_ID_ASC', - SessionsSumBlockIdDesc = 'SESSIONS_SUM_BLOCK_ID_DESC', - SessionsSumBlockNumberAsc = 'SESSIONS_SUM_BLOCK_NUMBER_ASC', - SessionsSumBlockNumberDesc = 'SESSIONS_SUM_BLOCK_NUMBER_DESC', - SessionsSumIdAsc = 'SESSIONS_SUM_ID_ASC', - SessionsSumIdDesc = 'SESSIONS_SUM_ID_DESC', - SessionsSumPublicKeyIdAsc = 'SESSIONS_SUM_PUBLIC_KEY_ID_ASC', - SessionsSumPublicKeyIdDesc = 'SESSIONS_SUM_PUBLIC_KEY_ID_DESC', - SessionsVariancePopulationBlockIdAsc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_ID_ASC', - SessionsVariancePopulationBlockIdDesc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_ID_DESC', - SessionsVariancePopulationBlockNumberAsc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - SessionsVariancePopulationBlockNumberDesc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - SessionsVariancePopulationIdAsc = 'SESSIONS_VARIANCE_POPULATION_ID_ASC', - SessionsVariancePopulationIdDesc = 'SESSIONS_VARIANCE_POPULATION_ID_DESC', - SessionsVariancePopulationPublicKeyIdAsc = 'SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_ASC', - SessionsVariancePopulationPublicKeyIdDesc = 'SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_DESC', - SessionsVarianceSampleBlockIdAsc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - SessionsVarianceSampleBlockIdDesc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - SessionsVarianceSampleBlockNumberAsc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - SessionsVarianceSampleBlockNumberDesc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - SessionsVarianceSampleIdAsc = 'SESSIONS_VARIANCE_SAMPLE_ID_ASC', - SessionsVarianceSampleIdDesc = 'SESSIONS_VARIANCE_SAMPLE_ID_DESC', - SessionsVarianceSamplePublicKeyIdAsc = 'SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_ASC', - SessionsVarianceSamplePublicKeyIdDesc = 'SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_DESC', - SignatureThresholdsAverageBlockIdAsc = 'SIGNATURE_THRESHOLDS_AVERAGE_BLOCK_ID_ASC', - SignatureThresholdsAverageBlockIdDesc = 'SIGNATURE_THRESHOLDS_AVERAGE_BLOCK_ID_DESC', - SignatureThresholdsAverageCurrentAsc = 'SIGNATURE_THRESHOLDS_AVERAGE_CURRENT_ASC', - SignatureThresholdsAverageCurrentDesc = 'SIGNATURE_THRESHOLDS_AVERAGE_CURRENT_DESC', - SignatureThresholdsAverageIdAsc = 'SIGNATURE_THRESHOLDS_AVERAGE_ID_ASC', - SignatureThresholdsAverageIdDesc = 'SIGNATURE_THRESHOLDS_AVERAGE_ID_DESC', - SignatureThresholdsAverageNextAsc = 'SIGNATURE_THRESHOLDS_AVERAGE_NEXT_ASC', - SignatureThresholdsAverageNextDesc = 'SIGNATURE_THRESHOLDS_AVERAGE_NEXT_DESC', - SignatureThresholdsAveragePendingAsc = 'SIGNATURE_THRESHOLDS_AVERAGE_PENDING_ASC', - SignatureThresholdsAveragePendingDesc = 'SIGNATURE_THRESHOLDS_AVERAGE_PENDING_DESC', - SignatureThresholdsCountAsc = 'SIGNATURE_THRESHOLDS_COUNT_ASC', - SignatureThresholdsCountDesc = 'SIGNATURE_THRESHOLDS_COUNT_DESC', - SignatureThresholdsDistinctCountBlockIdAsc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC', - SignatureThresholdsDistinctCountBlockIdDesc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC', - SignatureThresholdsDistinctCountCurrentAsc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC', - SignatureThresholdsDistinctCountCurrentDesc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC', - SignatureThresholdsDistinctCountIdAsc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_ID_ASC', - SignatureThresholdsDistinctCountIdDesc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_ID_DESC', - SignatureThresholdsDistinctCountNextAsc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_NEXT_ASC', - SignatureThresholdsDistinctCountNextDesc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_NEXT_DESC', - SignatureThresholdsDistinctCountPendingAsc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_PENDING_ASC', - SignatureThresholdsDistinctCountPendingDesc = 'SIGNATURE_THRESHOLDS_DISTINCT_COUNT_PENDING_DESC', - SignatureThresholdsMaxBlockIdAsc = 'SIGNATURE_THRESHOLDS_MAX_BLOCK_ID_ASC', - SignatureThresholdsMaxBlockIdDesc = 'SIGNATURE_THRESHOLDS_MAX_BLOCK_ID_DESC', - SignatureThresholdsMaxCurrentAsc = 'SIGNATURE_THRESHOLDS_MAX_CURRENT_ASC', - SignatureThresholdsMaxCurrentDesc = 'SIGNATURE_THRESHOLDS_MAX_CURRENT_DESC', - SignatureThresholdsMaxIdAsc = 'SIGNATURE_THRESHOLDS_MAX_ID_ASC', - SignatureThresholdsMaxIdDesc = 'SIGNATURE_THRESHOLDS_MAX_ID_DESC', - SignatureThresholdsMaxNextAsc = 'SIGNATURE_THRESHOLDS_MAX_NEXT_ASC', - SignatureThresholdsMaxNextDesc = 'SIGNATURE_THRESHOLDS_MAX_NEXT_DESC', - SignatureThresholdsMaxPendingAsc = 'SIGNATURE_THRESHOLDS_MAX_PENDING_ASC', - SignatureThresholdsMaxPendingDesc = 'SIGNATURE_THRESHOLDS_MAX_PENDING_DESC', - SignatureThresholdsMinBlockIdAsc = 'SIGNATURE_THRESHOLDS_MIN_BLOCK_ID_ASC', - SignatureThresholdsMinBlockIdDesc = 'SIGNATURE_THRESHOLDS_MIN_BLOCK_ID_DESC', - SignatureThresholdsMinCurrentAsc = 'SIGNATURE_THRESHOLDS_MIN_CURRENT_ASC', - SignatureThresholdsMinCurrentDesc = 'SIGNATURE_THRESHOLDS_MIN_CURRENT_DESC', - SignatureThresholdsMinIdAsc = 'SIGNATURE_THRESHOLDS_MIN_ID_ASC', - SignatureThresholdsMinIdDesc = 'SIGNATURE_THRESHOLDS_MIN_ID_DESC', - SignatureThresholdsMinNextAsc = 'SIGNATURE_THRESHOLDS_MIN_NEXT_ASC', - SignatureThresholdsMinNextDesc = 'SIGNATURE_THRESHOLDS_MIN_NEXT_DESC', - SignatureThresholdsMinPendingAsc = 'SIGNATURE_THRESHOLDS_MIN_PENDING_ASC', - SignatureThresholdsMinPendingDesc = 'SIGNATURE_THRESHOLDS_MIN_PENDING_DESC', - SignatureThresholdsStddevPopulationBlockIdAsc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC', - SignatureThresholdsStddevPopulationBlockIdDesc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC', - SignatureThresholdsStddevPopulationCurrentAsc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC', - SignatureThresholdsStddevPopulationCurrentDesc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC', - SignatureThresholdsStddevPopulationIdAsc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_ID_ASC', - SignatureThresholdsStddevPopulationIdDesc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_ID_DESC', - SignatureThresholdsStddevPopulationNextAsc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_NEXT_ASC', - SignatureThresholdsStddevPopulationNextDesc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_NEXT_DESC', - SignatureThresholdsStddevPopulationPendingAsc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_PENDING_ASC', - SignatureThresholdsStddevPopulationPendingDesc = 'SIGNATURE_THRESHOLDS_STDDEV_POPULATION_PENDING_DESC', - SignatureThresholdsStddevSampleBlockIdAsc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC', - SignatureThresholdsStddevSampleBlockIdDesc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC', - SignatureThresholdsStddevSampleCurrentAsc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC', - SignatureThresholdsStddevSampleCurrentDesc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC', - SignatureThresholdsStddevSampleIdAsc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_ID_ASC', - SignatureThresholdsStddevSampleIdDesc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_ID_DESC', - SignatureThresholdsStddevSampleNextAsc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC', - SignatureThresholdsStddevSampleNextDesc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC', - SignatureThresholdsStddevSamplePendingAsc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC', - SignatureThresholdsStddevSamplePendingDesc = 'SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC', - SignatureThresholdsSumBlockIdAsc = 'SIGNATURE_THRESHOLDS_SUM_BLOCK_ID_ASC', - SignatureThresholdsSumBlockIdDesc = 'SIGNATURE_THRESHOLDS_SUM_BLOCK_ID_DESC', - SignatureThresholdsSumCurrentAsc = 'SIGNATURE_THRESHOLDS_SUM_CURRENT_ASC', - SignatureThresholdsSumCurrentDesc = 'SIGNATURE_THRESHOLDS_SUM_CURRENT_DESC', - SignatureThresholdsSumIdAsc = 'SIGNATURE_THRESHOLDS_SUM_ID_ASC', - SignatureThresholdsSumIdDesc = 'SIGNATURE_THRESHOLDS_SUM_ID_DESC', - SignatureThresholdsSumNextAsc = 'SIGNATURE_THRESHOLDS_SUM_NEXT_ASC', - SignatureThresholdsSumNextDesc = 'SIGNATURE_THRESHOLDS_SUM_NEXT_DESC', - SignatureThresholdsSumPendingAsc = 'SIGNATURE_THRESHOLDS_SUM_PENDING_ASC', - SignatureThresholdsSumPendingDesc = 'SIGNATURE_THRESHOLDS_SUM_PENDING_DESC', - SignatureThresholdsVariancePopulationBlockIdAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC', - SignatureThresholdsVariancePopulationBlockIdDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC', - SignatureThresholdsVariancePopulationCurrentAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC', - SignatureThresholdsVariancePopulationCurrentDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC', - SignatureThresholdsVariancePopulationIdAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_ID_ASC', - SignatureThresholdsVariancePopulationIdDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_ID_DESC', - SignatureThresholdsVariancePopulationNextAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC', - SignatureThresholdsVariancePopulationNextDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC', - SignatureThresholdsVariancePopulationPendingAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC', - SignatureThresholdsVariancePopulationPendingDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC', - SignatureThresholdsVarianceSampleBlockIdAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - SignatureThresholdsVarianceSampleBlockIdDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - SignatureThresholdsVarianceSampleCurrentAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC', - SignatureThresholdsVarianceSampleCurrentDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC', - SignatureThresholdsVarianceSampleIdAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC', - SignatureThresholdsVarianceSampleIdDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC', - SignatureThresholdsVarianceSampleNextAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC', - SignatureThresholdsVarianceSampleNextDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC', - SignatureThresholdsVarianceSamplePendingAsc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC', - SignatureThresholdsVarianceSamplePendingDesc = 'SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC', - SpecVersionAsc = 'SPEC_VERSION_ASC', - SpecVersionDesc = 'SPEC_VERSION_DESC', - StateRootAsc = 'STATE_ROOT_ASC', - StateRootDesc = 'STATE_ROOT_DESC', - TimestampAsc = 'TIMESTAMP_ASC', - TimestampDesc = 'TIMESTAMP_DESC', - UnsignedProposalsQueuesAverageBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_ID_ASC', - UnsignedProposalsQueuesAverageBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_ID_DESC', - UnsignedProposalsQueuesAverageBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesAverageBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesAverageIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_AVERAGE_ID_ASC', - UnsignedProposalsQueuesAverageIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_AVERAGE_ID_DESC', - UnsignedProposalsQueuesCountAsc = 'UNSIGNED_PROPOSALS_QUEUES_COUNT_ASC', - UnsignedProposalsQueuesCountDesc = 'UNSIGNED_PROPOSALS_QUEUES_COUNT_DESC', - UnsignedProposalsQueuesDistinctCountBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_ID_ASC', - UnsignedProposalsQueuesDistinctCountBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_ID_DESC', - UnsignedProposalsQueuesDistinctCountBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesDistinctCountBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesDistinctCountIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_ID_ASC', - UnsignedProposalsQueuesDistinctCountIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_ID_DESC', - UnsignedProposalsQueuesMaxBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_ID_ASC', - UnsignedProposalsQueuesMaxBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_ID_DESC', - UnsignedProposalsQueuesMaxBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesMaxBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesMaxIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_MAX_ID_ASC', - UnsignedProposalsQueuesMaxIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_MAX_ID_DESC', - UnsignedProposalsQueuesMinBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_ID_ASC', - UnsignedProposalsQueuesMinBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_ID_DESC', - UnsignedProposalsQueuesMinBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesMinBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesMinIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_MIN_ID_ASC', - UnsignedProposalsQueuesMinIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_MIN_ID_DESC', - UnsignedProposalsQueuesStddevPopulationBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_ID_ASC', - UnsignedProposalsQueuesStddevPopulationBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_ID_DESC', - UnsignedProposalsQueuesStddevPopulationBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesStddevPopulationBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesStddevPopulationIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_ID_ASC', - UnsignedProposalsQueuesStddevPopulationIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_ID_DESC', - UnsignedProposalsQueuesStddevSampleBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_ID_ASC', - UnsignedProposalsQueuesStddevSampleBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_ID_DESC', - UnsignedProposalsQueuesStddevSampleBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesStddevSampleBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesStddevSampleIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_ID_ASC', - UnsignedProposalsQueuesStddevSampleIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_ID_DESC', - UnsignedProposalsQueuesSumBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_ID_ASC', - UnsignedProposalsQueuesSumBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_ID_DESC', - UnsignedProposalsQueuesSumBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesSumBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesSumIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_SUM_ID_ASC', - UnsignedProposalsQueuesSumIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_SUM_ID_DESC', - UnsignedProposalsQueuesVariancePopulationBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_ID_ASC', - UnsignedProposalsQueuesVariancePopulationBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_ID_DESC', - UnsignedProposalsQueuesVariancePopulationBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesVariancePopulationBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesVariancePopulationIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_ID_ASC', - UnsignedProposalsQueuesVariancePopulationIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_ID_DESC', - UnsignedProposalsQueuesVarianceSampleBlockIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_ID_ASC', - UnsignedProposalsQueuesVarianceSampleBlockIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_ID_DESC', - UnsignedProposalsQueuesVarianceSampleBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueuesVarianceSampleBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueuesVarianceSampleIdAsc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_ID_ASC', - UnsignedProposalsQueuesVarianceSampleIdDesc = 'UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_ID_DESC', -} - -/** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */ -export type BooleanFilter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -export type CountryCode = Node & { - __typename?: 'CountryCode'; - /** Reads and enables pagination through a set of `Account`. */ - accounts: AccountsConnection; - /** Reads and enables pagination through a set of `Account`. */ - accountsByAccountCountryCodeIdAndCreatorId: CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection; - /** Reads and enables pagination through a set of `Block`. */ - blocksByAccountCountryCodeIdAndCreateAtBlockId: CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection; - code: Scalars['String']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; -}; - -export type CountryCodeAccountsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Account` values, with data from `Account`. */ -export type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection = - { - __typename?: 'CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Account`, info from the `Account`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Account` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Account` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Account` values, with data from `Account`. */ -export type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Account` edge in the connection, with data from `Account`. */ -export type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdge = - { - __typename?: 'CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdge'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByCreatorId: AccountsConnection; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Account` at the end of the edge. */ - node?: Maybe; - }; - -/** A `Account` edge in the connection, with data from `Account`. */ -export type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdgeAccountsByCreatorIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type CountryCodeAggregates = { - __typename?: 'CountryCodeAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -/** A connection to a list of `Block` values, with data from `Account`. */ -export type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection = - { - __typename?: 'CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `Account`, and the 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']; - }; - -/** A connection to a list of `Block` values, with data from `Account`. */ -export type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `Account`. */ -export type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdge = - { - __typename?: 'CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdge'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByCreateAtBlockId: AccountsConnection; - /** 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 `Account`. */ -export type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdgeAccountsByCreateAtBlockIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type CountryCodeDistinctCountAggregates = { - __typename?: 'CountryCodeDistinctCountAggregates'; - /** Distinct count of code across the matching connection */ - code?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; -}; - -/** A filter to be used against `CountryCode` object types. All fields are combined with a logical ‘and.’ */ -export type CountryCodeFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `code` field. */ - code?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; -}; - -/** A connection to a list of `CountryCode` values. */ -export type CountryCodesConnection = { - __typename?: 'CountryCodesConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `CountryCode` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `CountryCode` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `CountryCode` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `CountryCode` values. */ -export type CountryCodesConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `CountryCode` edge in the connection. */ -export type CountryCodesEdge = { - __typename?: 'CountryCodesEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `CountryCode` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `CountryCode` for usage during aggregation. */ -export enum CountryCodesGroupBy { - Code = 'CODE', -} - -/** Conditions for `CountryCode` aggregates. */ -export type CountryCodesHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `CountryCode`. */ -export enum CountryCodesOrderBy { - AccountsAverageCountryCodeIdAsc = 'ACCOUNTS_AVERAGE_COUNTRY_CODE_ID_ASC', - AccountsAverageCountryCodeIdDesc = 'ACCOUNTS_AVERAGE_COUNTRY_CODE_ID_DESC', - AccountsAverageCreatedAtAsc = 'ACCOUNTS_AVERAGE_CREATED_AT_ASC', - AccountsAverageCreatedAtDesc = 'ACCOUNTS_AVERAGE_CREATED_AT_DESC', - AccountsAverageCreateAtBlockIdAsc = 'ACCOUNTS_AVERAGE_CREATE_AT_BLOCK_ID_ASC', - AccountsAverageCreateAtBlockIdDesc = 'ACCOUNTS_AVERAGE_CREATE_AT_BLOCK_ID_DESC', - AccountsAverageCreatorIdAsc = 'ACCOUNTS_AVERAGE_CREATOR_ID_ASC', - AccountsAverageCreatorIdDesc = 'ACCOUNTS_AVERAGE_CREATOR_ID_DESC', - AccountsAverageDisplayAsc = 'ACCOUNTS_AVERAGE_DISPLAY_ASC', - AccountsAverageDisplayDesc = 'ACCOUNTS_AVERAGE_DISPLAY_DESC', - AccountsAverageEmailAsc = 'ACCOUNTS_AVERAGE_EMAIL_ASC', - AccountsAverageEmailDesc = 'ACCOUNTS_AVERAGE_EMAIL_DESC', - AccountsAverageIdAsc = 'ACCOUNTS_AVERAGE_ID_ASC', - AccountsAverageIdDesc = 'ACCOUNTS_AVERAGE_ID_DESC', - AccountsAverageImageAsc = 'ACCOUNTS_AVERAGE_IMAGE_ASC', - AccountsAverageImageDesc = 'ACCOUNTS_AVERAGE_IMAGE_DESC', - AccountsAverageLegalAsc = 'ACCOUNTS_AVERAGE_LEGAL_ASC', - AccountsAverageLegalDesc = 'ACCOUNTS_AVERAGE_LEGAL_DESC', - AccountsAveragePgpFingerprintAsc = 'ACCOUNTS_AVERAGE_PGP_FINGERPRINT_ASC', - AccountsAveragePgpFingerprintDesc = 'ACCOUNTS_AVERAGE_PGP_FINGERPRINT_DESC', - AccountsAverageRiotAsc = 'ACCOUNTS_AVERAGE_RIOT_ASC', - AccountsAverageRiotDesc = 'ACCOUNTS_AVERAGE_RIOT_DESC', - AccountsAverageTwitterAsc = 'ACCOUNTS_AVERAGE_TWITTER_ASC', - AccountsAverageTwitterDesc = 'ACCOUNTS_AVERAGE_TWITTER_DESC', - AccountsAverageWebAsc = 'ACCOUNTS_AVERAGE_WEB_ASC', - AccountsAverageWebDesc = 'ACCOUNTS_AVERAGE_WEB_DESC', - AccountsCountAsc = 'ACCOUNTS_COUNT_ASC', - AccountsCountDesc = 'ACCOUNTS_COUNT_DESC', - AccountsDistinctCountCountryCodeIdAsc = 'ACCOUNTS_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC', - AccountsDistinctCountCountryCodeIdDesc = 'ACCOUNTS_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC', - AccountsDistinctCountCreatedAtAsc = 'ACCOUNTS_DISTINCT_COUNT_CREATED_AT_ASC', - AccountsDistinctCountCreatedAtDesc = 'ACCOUNTS_DISTINCT_COUNT_CREATED_AT_DESC', - AccountsDistinctCountCreateAtBlockIdAsc = 'ACCOUNTS_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC', - AccountsDistinctCountCreateAtBlockIdDesc = 'ACCOUNTS_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC', - AccountsDistinctCountCreatorIdAsc = 'ACCOUNTS_DISTINCT_COUNT_CREATOR_ID_ASC', - AccountsDistinctCountCreatorIdDesc = 'ACCOUNTS_DISTINCT_COUNT_CREATOR_ID_DESC', - AccountsDistinctCountDisplayAsc = 'ACCOUNTS_DISTINCT_COUNT_DISPLAY_ASC', - AccountsDistinctCountDisplayDesc = 'ACCOUNTS_DISTINCT_COUNT_DISPLAY_DESC', - AccountsDistinctCountEmailAsc = 'ACCOUNTS_DISTINCT_COUNT_EMAIL_ASC', - AccountsDistinctCountEmailDesc = 'ACCOUNTS_DISTINCT_COUNT_EMAIL_DESC', - AccountsDistinctCountIdAsc = 'ACCOUNTS_DISTINCT_COUNT_ID_ASC', - AccountsDistinctCountIdDesc = 'ACCOUNTS_DISTINCT_COUNT_ID_DESC', - AccountsDistinctCountImageAsc = 'ACCOUNTS_DISTINCT_COUNT_IMAGE_ASC', - AccountsDistinctCountImageDesc = 'ACCOUNTS_DISTINCT_COUNT_IMAGE_DESC', - AccountsDistinctCountLegalAsc = 'ACCOUNTS_DISTINCT_COUNT_LEGAL_ASC', - AccountsDistinctCountLegalDesc = 'ACCOUNTS_DISTINCT_COUNT_LEGAL_DESC', - AccountsDistinctCountPgpFingerprintAsc = 'ACCOUNTS_DISTINCT_COUNT_PGP_FINGERPRINT_ASC', - AccountsDistinctCountPgpFingerprintDesc = 'ACCOUNTS_DISTINCT_COUNT_PGP_FINGERPRINT_DESC', - AccountsDistinctCountRiotAsc = 'ACCOUNTS_DISTINCT_COUNT_RIOT_ASC', - AccountsDistinctCountRiotDesc = 'ACCOUNTS_DISTINCT_COUNT_RIOT_DESC', - AccountsDistinctCountTwitterAsc = 'ACCOUNTS_DISTINCT_COUNT_TWITTER_ASC', - AccountsDistinctCountTwitterDesc = 'ACCOUNTS_DISTINCT_COUNT_TWITTER_DESC', - AccountsDistinctCountWebAsc = 'ACCOUNTS_DISTINCT_COUNT_WEB_ASC', - AccountsDistinctCountWebDesc = 'ACCOUNTS_DISTINCT_COUNT_WEB_DESC', - AccountsMaxCountryCodeIdAsc = 'ACCOUNTS_MAX_COUNTRY_CODE_ID_ASC', - AccountsMaxCountryCodeIdDesc = 'ACCOUNTS_MAX_COUNTRY_CODE_ID_DESC', - AccountsMaxCreatedAtAsc = 'ACCOUNTS_MAX_CREATED_AT_ASC', - AccountsMaxCreatedAtDesc = 'ACCOUNTS_MAX_CREATED_AT_DESC', - AccountsMaxCreateAtBlockIdAsc = 'ACCOUNTS_MAX_CREATE_AT_BLOCK_ID_ASC', - AccountsMaxCreateAtBlockIdDesc = 'ACCOUNTS_MAX_CREATE_AT_BLOCK_ID_DESC', - AccountsMaxCreatorIdAsc = 'ACCOUNTS_MAX_CREATOR_ID_ASC', - AccountsMaxCreatorIdDesc = 'ACCOUNTS_MAX_CREATOR_ID_DESC', - AccountsMaxDisplayAsc = 'ACCOUNTS_MAX_DISPLAY_ASC', - AccountsMaxDisplayDesc = 'ACCOUNTS_MAX_DISPLAY_DESC', - AccountsMaxEmailAsc = 'ACCOUNTS_MAX_EMAIL_ASC', - AccountsMaxEmailDesc = 'ACCOUNTS_MAX_EMAIL_DESC', - AccountsMaxIdAsc = 'ACCOUNTS_MAX_ID_ASC', - AccountsMaxIdDesc = 'ACCOUNTS_MAX_ID_DESC', - AccountsMaxImageAsc = 'ACCOUNTS_MAX_IMAGE_ASC', - AccountsMaxImageDesc = 'ACCOUNTS_MAX_IMAGE_DESC', - AccountsMaxLegalAsc = 'ACCOUNTS_MAX_LEGAL_ASC', - AccountsMaxLegalDesc = 'ACCOUNTS_MAX_LEGAL_DESC', - AccountsMaxPgpFingerprintAsc = 'ACCOUNTS_MAX_PGP_FINGERPRINT_ASC', - AccountsMaxPgpFingerprintDesc = 'ACCOUNTS_MAX_PGP_FINGERPRINT_DESC', - AccountsMaxRiotAsc = 'ACCOUNTS_MAX_RIOT_ASC', - AccountsMaxRiotDesc = 'ACCOUNTS_MAX_RIOT_DESC', - AccountsMaxTwitterAsc = 'ACCOUNTS_MAX_TWITTER_ASC', - AccountsMaxTwitterDesc = 'ACCOUNTS_MAX_TWITTER_DESC', - AccountsMaxWebAsc = 'ACCOUNTS_MAX_WEB_ASC', - AccountsMaxWebDesc = 'ACCOUNTS_MAX_WEB_DESC', - AccountsMinCountryCodeIdAsc = 'ACCOUNTS_MIN_COUNTRY_CODE_ID_ASC', - AccountsMinCountryCodeIdDesc = 'ACCOUNTS_MIN_COUNTRY_CODE_ID_DESC', - AccountsMinCreatedAtAsc = 'ACCOUNTS_MIN_CREATED_AT_ASC', - AccountsMinCreatedAtDesc = 'ACCOUNTS_MIN_CREATED_AT_DESC', - AccountsMinCreateAtBlockIdAsc = 'ACCOUNTS_MIN_CREATE_AT_BLOCK_ID_ASC', - AccountsMinCreateAtBlockIdDesc = 'ACCOUNTS_MIN_CREATE_AT_BLOCK_ID_DESC', - AccountsMinCreatorIdAsc = 'ACCOUNTS_MIN_CREATOR_ID_ASC', - AccountsMinCreatorIdDesc = 'ACCOUNTS_MIN_CREATOR_ID_DESC', - AccountsMinDisplayAsc = 'ACCOUNTS_MIN_DISPLAY_ASC', - AccountsMinDisplayDesc = 'ACCOUNTS_MIN_DISPLAY_DESC', - AccountsMinEmailAsc = 'ACCOUNTS_MIN_EMAIL_ASC', - AccountsMinEmailDesc = 'ACCOUNTS_MIN_EMAIL_DESC', - AccountsMinIdAsc = 'ACCOUNTS_MIN_ID_ASC', - AccountsMinIdDesc = 'ACCOUNTS_MIN_ID_DESC', - AccountsMinImageAsc = 'ACCOUNTS_MIN_IMAGE_ASC', - AccountsMinImageDesc = 'ACCOUNTS_MIN_IMAGE_DESC', - AccountsMinLegalAsc = 'ACCOUNTS_MIN_LEGAL_ASC', - AccountsMinLegalDesc = 'ACCOUNTS_MIN_LEGAL_DESC', - AccountsMinPgpFingerprintAsc = 'ACCOUNTS_MIN_PGP_FINGERPRINT_ASC', - AccountsMinPgpFingerprintDesc = 'ACCOUNTS_MIN_PGP_FINGERPRINT_DESC', - AccountsMinRiotAsc = 'ACCOUNTS_MIN_RIOT_ASC', - AccountsMinRiotDesc = 'ACCOUNTS_MIN_RIOT_DESC', - AccountsMinTwitterAsc = 'ACCOUNTS_MIN_TWITTER_ASC', - AccountsMinTwitterDesc = 'ACCOUNTS_MIN_TWITTER_DESC', - AccountsMinWebAsc = 'ACCOUNTS_MIN_WEB_ASC', - AccountsMinWebDesc = 'ACCOUNTS_MIN_WEB_DESC', - AccountsStddevPopulationCountryCodeIdAsc = 'ACCOUNTS_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC', - AccountsStddevPopulationCountryCodeIdDesc = 'ACCOUNTS_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC', - AccountsStddevPopulationCreatedAtAsc = 'ACCOUNTS_STDDEV_POPULATION_CREATED_AT_ASC', - AccountsStddevPopulationCreatedAtDesc = 'ACCOUNTS_STDDEV_POPULATION_CREATED_AT_DESC', - AccountsStddevPopulationCreateAtBlockIdAsc = 'ACCOUNTS_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC', - AccountsStddevPopulationCreateAtBlockIdDesc = 'ACCOUNTS_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC', - AccountsStddevPopulationCreatorIdAsc = 'ACCOUNTS_STDDEV_POPULATION_CREATOR_ID_ASC', - AccountsStddevPopulationCreatorIdDesc = 'ACCOUNTS_STDDEV_POPULATION_CREATOR_ID_DESC', - AccountsStddevPopulationDisplayAsc = 'ACCOUNTS_STDDEV_POPULATION_DISPLAY_ASC', - AccountsStddevPopulationDisplayDesc = 'ACCOUNTS_STDDEV_POPULATION_DISPLAY_DESC', - AccountsStddevPopulationEmailAsc = 'ACCOUNTS_STDDEV_POPULATION_EMAIL_ASC', - AccountsStddevPopulationEmailDesc = 'ACCOUNTS_STDDEV_POPULATION_EMAIL_DESC', - AccountsStddevPopulationIdAsc = 'ACCOUNTS_STDDEV_POPULATION_ID_ASC', - AccountsStddevPopulationIdDesc = 'ACCOUNTS_STDDEV_POPULATION_ID_DESC', - AccountsStddevPopulationImageAsc = 'ACCOUNTS_STDDEV_POPULATION_IMAGE_ASC', - AccountsStddevPopulationImageDesc = 'ACCOUNTS_STDDEV_POPULATION_IMAGE_DESC', - AccountsStddevPopulationLegalAsc = 'ACCOUNTS_STDDEV_POPULATION_LEGAL_ASC', - AccountsStddevPopulationLegalDesc = 'ACCOUNTS_STDDEV_POPULATION_LEGAL_DESC', - AccountsStddevPopulationPgpFingerprintAsc = 'ACCOUNTS_STDDEV_POPULATION_PGP_FINGERPRINT_ASC', - AccountsStddevPopulationPgpFingerprintDesc = 'ACCOUNTS_STDDEV_POPULATION_PGP_FINGERPRINT_DESC', - AccountsStddevPopulationRiotAsc = 'ACCOUNTS_STDDEV_POPULATION_RIOT_ASC', - AccountsStddevPopulationRiotDesc = 'ACCOUNTS_STDDEV_POPULATION_RIOT_DESC', - AccountsStddevPopulationTwitterAsc = 'ACCOUNTS_STDDEV_POPULATION_TWITTER_ASC', - AccountsStddevPopulationTwitterDesc = 'ACCOUNTS_STDDEV_POPULATION_TWITTER_DESC', - AccountsStddevPopulationWebAsc = 'ACCOUNTS_STDDEV_POPULATION_WEB_ASC', - AccountsStddevPopulationWebDesc = 'ACCOUNTS_STDDEV_POPULATION_WEB_DESC', - AccountsStddevSampleCountryCodeIdAsc = 'ACCOUNTS_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC', - AccountsStddevSampleCountryCodeIdDesc = 'ACCOUNTS_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC', - AccountsStddevSampleCreatedAtAsc = 'ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_ASC', - AccountsStddevSampleCreatedAtDesc = 'ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_DESC', - AccountsStddevSampleCreateAtBlockIdAsc = 'ACCOUNTS_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC', - AccountsStddevSampleCreateAtBlockIdDesc = 'ACCOUNTS_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC', - AccountsStddevSampleCreatorIdAsc = 'ACCOUNTS_STDDEV_SAMPLE_CREATOR_ID_ASC', - AccountsStddevSampleCreatorIdDesc = 'ACCOUNTS_STDDEV_SAMPLE_CREATOR_ID_DESC', - AccountsStddevSampleDisplayAsc = 'ACCOUNTS_STDDEV_SAMPLE_DISPLAY_ASC', - AccountsStddevSampleDisplayDesc = 'ACCOUNTS_STDDEV_SAMPLE_DISPLAY_DESC', - AccountsStddevSampleEmailAsc = 'ACCOUNTS_STDDEV_SAMPLE_EMAIL_ASC', - AccountsStddevSampleEmailDesc = 'ACCOUNTS_STDDEV_SAMPLE_EMAIL_DESC', - AccountsStddevSampleIdAsc = 'ACCOUNTS_STDDEV_SAMPLE_ID_ASC', - AccountsStddevSampleIdDesc = 'ACCOUNTS_STDDEV_SAMPLE_ID_DESC', - AccountsStddevSampleImageAsc = 'ACCOUNTS_STDDEV_SAMPLE_IMAGE_ASC', - AccountsStddevSampleImageDesc = 'ACCOUNTS_STDDEV_SAMPLE_IMAGE_DESC', - AccountsStddevSampleLegalAsc = 'ACCOUNTS_STDDEV_SAMPLE_LEGAL_ASC', - AccountsStddevSampleLegalDesc = 'ACCOUNTS_STDDEV_SAMPLE_LEGAL_DESC', - AccountsStddevSamplePgpFingerprintAsc = 'ACCOUNTS_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC', - AccountsStddevSamplePgpFingerprintDesc = 'ACCOUNTS_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC', - AccountsStddevSampleRiotAsc = 'ACCOUNTS_STDDEV_SAMPLE_RIOT_ASC', - AccountsStddevSampleRiotDesc = 'ACCOUNTS_STDDEV_SAMPLE_RIOT_DESC', - AccountsStddevSampleTwitterAsc = 'ACCOUNTS_STDDEV_SAMPLE_TWITTER_ASC', - AccountsStddevSampleTwitterDesc = 'ACCOUNTS_STDDEV_SAMPLE_TWITTER_DESC', - AccountsStddevSampleWebAsc = 'ACCOUNTS_STDDEV_SAMPLE_WEB_ASC', - AccountsStddevSampleWebDesc = 'ACCOUNTS_STDDEV_SAMPLE_WEB_DESC', - AccountsSumCountryCodeIdAsc = 'ACCOUNTS_SUM_COUNTRY_CODE_ID_ASC', - AccountsSumCountryCodeIdDesc = 'ACCOUNTS_SUM_COUNTRY_CODE_ID_DESC', - AccountsSumCreatedAtAsc = 'ACCOUNTS_SUM_CREATED_AT_ASC', - AccountsSumCreatedAtDesc = 'ACCOUNTS_SUM_CREATED_AT_DESC', - AccountsSumCreateAtBlockIdAsc = 'ACCOUNTS_SUM_CREATE_AT_BLOCK_ID_ASC', - AccountsSumCreateAtBlockIdDesc = 'ACCOUNTS_SUM_CREATE_AT_BLOCK_ID_DESC', - AccountsSumCreatorIdAsc = 'ACCOUNTS_SUM_CREATOR_ID_ASC', - AccountsSumCreatorIdDesc = 'ACCOUNTS_SUM_CREATOR_ID_DESC', - AccountsSumDisplayAsc = 'ACCOUNTS_SUM_DISPLAY_ASC', - AccountsSumDisplayDesc = 'ACCOUNTS_SUM_DISPLAY_DESC', - AccountsSumEmailAsc = 'ACCOUNTS_SUM_EMAIL_ASC', - AccountsSumEmailDesc = 'ACCOUNTS_SUM_EMAIL_DESC', - AccountsSumIdAsc = 'ACCOUNTS_SUM_ID_ASC', - AccountsSumIdDesc = 'ACCOUNTS_SUM_ID_DESC', - AccountsSumImageAsc = 'ACCOUNTS_SUM_IMAGE_ASC', - AccountsSumImageDesc = 'ACCOUNTS_SUM_IMAGE_DESC', - AccountsSumLegalAsc = 'ACCOUNTS_SUM_LEGAL_ASC', - AccountsSumLegalDesc = 'ACCOUNTS_SUM_LEGAL_DESC', - AccountsSumPgpFingerprintAsc = 'ACCOUNTS_SUM_PGP_FINGERPRINT_ASC', - AccountsSumPgpFingerprintDesc = 'ACCOUNTS_SUM_PGP_FINGERPRINT_DESC', - AccountsSumRiotAsc = 'ACCOUNTS_SUM_RIOT_ASC', - AccountsSumRiotDesc = 'ACCOUNTS_SUM_RIOT_DESC', - AccountsSumTwitterAsc = 'ACCOUNTS_SUM_TWITTER_ASC', - AccountsSumTwitterDesc = 'ACCOUNTS_SUM_TWITTER_DESC', - AccountsSumWebAsc = 'ACCOUNTS_SUM_WEB_ASC', - AccountsSumWebDesc = 'ACCOUNTS_SUM_WEB_DESC', - AccountsVariancePopulationCountryCodeIdAsc = 'ACCOUNTS_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC', - AccountsVariancePopulationCountryCodeIdDesc = 'ACCOUNTS_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC', - AccountsVariancePopulationCreatedAtAsc = 'ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_ASC', - AccountsVariancePopulationCreatedAtDesc = 'ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_DESC', - AccountsVariancePopulationCreateAtBlockIdAsc = 'ACCOUNTS_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC', - AccountsVariancePopulationCreateAtBlockIdDesc = 'ACCOUNTS_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC', - AccountsVariancePopulationCreatorIdAsc = 'ACCOUNTS_VARIANCE_POPULATION_CREATOR_ID_ASC', - AccountsVariancePopulationCreatorIdDesc = 'ACCOUNTS_VARIANCE_POPULATION_CREATOR_ID_DESC', - AccountsVariancePopulationDisplayAsc = 'ACCOUNTS_VARIANCE_POPULATION_DISPLAY_ASC', - AccountsVariancePopulationDisplayDesc = 'ACCOUNTS_VARIANCE_POPULATION_DISPLAY_DESC', - AccountsVariancePopulationEmailAsc = 'ACCOUNTS_VARIANCE_POPULATION_EMAIL_ASC', - AccountsVariancePopulationEmailDesc = 'ACCOUNTS_VARIANCE_POPULATION_EMAIL_DESC', - AccountsVariancePopulationIdAsc = 'ACCOUNTS_VARIANCE_POPULATION_ID_ASC', - AccountsVariancePopulationIdDesc = 'ACCOUNTS_VARIANCE_POPULATION_ID_DESC', - AccountsVariancePopulationImageAsc = 'ACCOUNTS_VARIANCE_POPULATION_IMAGE_ASC', - AccountsVariancePopulationImageDesc = 'ACCOUNTS_VARIANCE_POPULATION_IMAGE_DESC', - AccountsVariancePopulationLegalAsc = 'ACCOUNTS_VARIANCE_POPULATION_LEGAL_ASC', - AccountsVariancePopulationLegalDesc = 'ACCOUNTS_VARIANCE_POPULATION_LEGAL_DESC', - AccountsVariancePopulationPgpFingerprintAsc = 'ACCOUNTS_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC', - AccountsVariancePopulationPgpFingerprintDesc = 'ACCOUNTS_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC', - AccountsVariancePopulationRiotAsc = 'ACCOUNTS_VARIANCE_POPULATION_RIOT_ASC', - AccountsVariancePopulationRiotDesc = 'ACCOUNTS_VARIANCE_POPULATION_RIOT_DESC', - AccountsVariancePopulationTwitterAsc = 'ACCOUNTS_VARIANCE_POPULATION_TWITTER_ASC', - AccountsVariancePopulationTwitterDesc = 'ACCOUNTS_VARIANCE_POPULATION_TWITTER_DESC', - AccountsVariancePopulationWebAsc = 'ACCOUNTS_VARIANCE_POPULATION_WEB_ASC', - AccountsVariancePopulationWebDesc = 'ACCOUNTS_VARIANCE_POPULATION_WEB_DESC', - AccountsVarianceSampleCountryCodeIdAsc = 'ACCOUNTS_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC', - AccountsVarianceSampleCountryCodeIdDesc = 'ACCOUNTS_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC', - AccountsVarianceSampleCreatedAtAsc = 'ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_ASC', - AccountsVarianceSampleCreatedAtDesc = 'ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_DESC', - AccountsVarianceSampleCreateAtBlockIdAsc = 'ACCOUNTS_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC', - AccountsVarianceSampleCreateAtBlockIdDesc = 'ACCOUNTS_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC', - AccountsVarianceSampleCreatorIdAsc = 'ACCOUNTS_VARIANCE_SAMPLE_CREATOR_ID_ASC', - AccountsVarianceSampleCreatorIdDesc = 'ACCOUNTS_VARIANCE_SAMPLE_CREATOR_ID_DESC', - AccountsVarianceSampleDisplayAsc = 'ACCOUNTS_VARIANCE_SAMPLE_DISPLAY_ASC', - AccountsVarianceSampleDisplayDesc = 'ACCOUNTS_VARIANCE_SAMPLE_DISPLAY_DESC', - AccountsVarianceSampleEmailAsc = 'ACCOUNTS_VARIANCE_SAMPLE_EMAIL_ASC', - AccountsVarianceSampleEmailDesc = 'ACCOUNTS_VARIANCE_SAMPLE_EMAIL_DESC', - AccountsVarianceSampleIdAsc = 'ACCOUNTS_VARIANCE_SAMPLE_ID_ASC', - AccountsVarianceSampleIdDesc = 'ACCOUNTS_VARIANCE_SAMPLE_ID_DESC', - AccountsVarianceSampleImageAsc = 'ACCOUNTS_VARIANCE_SAMPLE_IMAGE_ASC', - AccountsVarianceSampleImageDesc = 'ACCOUNTS_VARIANCE_SAMPLE_IMAGE_DESC', - AccountsVarianceSampleLegalAsc = 'ACCOUNTS_VARIANCE_SAMPLE_LEGAL_ASC', - AccountsVarianceSampleLegalDesc = 'ACCOUNTS_VARIANCE_SAMPLE_LEGAL_DESC', - AccountsVarianceSamplePgpFingerprintAsc = 'ACCOUNTS_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC', - AccountsVarianceSamplePgpFingerprintDesc = 'ACCOUNTS_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC', - AccountsVarianceSampleRiotAsc = 'ACCOUNTS_VARIANCE_SAMPLE_RIOT_ASC', - AccountsVarianceSampleRiotDesc = 'ACCOUNTS_VARIANCE_SAMPLE_RIOT_DESC', - AccountsVarianceSampleTwitterAsc = 'ACCOUNTS_VARIANCE_SAMPLE_TWITTER_ASC', - AccountsVarianceSampleTwitterDesc = 'ACCOUNTS_VARIANCE_SAMPLE_TWITTER_DESC', - AccountsVarianceSampleWebAsc = 'ACCOUNTS_VARIANCE_SAMPLE_WEB_ASC', - AccountsVarianceSampleWebDesc = 'ACCOUNTS_VARIANCE_SAMPLE_WEB_DESC', - CodeAsc = 'CODE_ASC', - CodeDesc = 'CODE_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', -} - -/** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */ -export type DatetimeFilter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -export type Event = Node & { - __typename?: 'Event'; - arguments?: Maybe; - /** Reads a single `Block` that is related to this `Event`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['BigFloat']; - data?: Maybe; - docs?: Maybe; - /** Reads a single `Extrinsic` that is related to this `Event`. */ - extrinsic?: Maybe; - extrinsicId?: Maybe; - id: Scalars['String']; - index: Scalars['Int']; - method?: Maybe; - module?: Maybe; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - timestamp?: Maybe; -}; - -export type EventAggregates = { - __typename?: 'EventAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type EventAverageAggregates = { - __typename?: 'EventAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Mean average of index across the matching connection */ - index?: Maybe; -}; - -export type EventDistinctCountAggregates = { - __typename?: 'EventDistinctCountAggregates'; - /** Distinct count of arguments across the matching connection */ - arguments?: Maybe; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of data across the matching connection */ - data?: Maybe; - /** Distinct count of docs across the matching connection */ - docs?: Maybe; - /** Distinct count of extrinsicId across the matching connection */ - extrinsicId?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of index across the matching connection */ - index?: Maybe; - /** Distinct count of method across the matching connection */ - method?: Maybe; - /** Distinct count of module across the matching connection */ - module?: Maybe; - /** Distinct count of timestamp across the matching connection */ - timestamp?: Maybe; -}; - -/** A filter to be used against `Event` object types. All fields are combined with a logical ‘and.’ */ -export type EventFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `arguments` field. */ - arguments?: InputMaybe; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `data` field. */ - data?: InputMaybe; - /** Filter by the object’s `docs` field. */ - docs?: InputMaybe; - /** Filter by the object’s `extrinsicId` field. */ - extrinsicId?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `index` field. */ - index?: InputMaybe; - /** Filter by the object’s `method` field. */ - method?: InputMaybe; - /** Filter by the object’s `module` field. */ - module?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `timestamp` field. */ - timestamp?: InputMaybe; -}; - -export type EventMaxAggregates = { - __typename?: 'EventMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Maximum of index across the matching connection */ - index?: Maybe; -}; - -export type EventMinAggregates = { - __typename?: 'EventMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Minimum of index across the matching connection */ - index?: Maybe; -}; - -export type EventStddevPopulationAggregates = { - __typename?: 'EventStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population standard deviation of index across the matching connection */ - index?: Maybe; -}; - -export type EventStddevSampleAggregates = { - __typename?: 'EventStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample standard deviation of index across the matching connection */ - index?: Maybe; -}; - -export type EventSumAggregates = { - __typename?: 'EventSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigFloat']; - /** Sum of index across the matching connection */ - index: Scalars['BigInt']; -}; - -export type EventVariancePopulationAggregates = { - __typename?: 'EventVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population variance of index across the matching connection */ - index?: Maybe; -}; - -export type EventVarianceSampleAggregates = { - __typename?: 'EventVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample variance of index across the matching connection */ - index?: Maybe; -}; - -/** A connection to a list of `Event` values. */ -export type EventsConnection = { - __typename?: 'EventsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Event` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Event` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Event` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Event` values. */ -export type EventsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Event` edge in the connection. */ -export type EventsEdge = { - __typename?: 'EventsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Event` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Event` for usage during aggregation. */ -export enum EventsGroupBy { - Arguments = 'ARGUMENTS', - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Data = 'DATA', - Docs = 'DOCS', - ExtrinsicId = 'EXTRINSIC_ID', - Index = 'INDEX', - Method = 'METHOD', - Module = 'MODULE', - Timestamp = 'TIMESTAMP', - TimestampTruncatedToDay = 'TIMESTAMP_TRUNCATED_TO_DAY', - TimestampTruncatedToHour = 'TIMESTAMP_TRUNCATED_TO_HOUR', -} - -export type EventsHavingAverageInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingDistinctCountInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -/** Conditions for `Event` aggregates. */ -export type EventsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type EventsHavingMaxInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingMinInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingStddevPopulationInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingStddevSampleInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingSumInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingVariancePopulationInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type EventsHavingVarianceSampleInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; - timestamp?: InputMaybe; -}; - -/** Methods to use when ordering `Event`. */ -export enum EventsOrderBy { - ArgumentsAsc = 'ARGUMENTS_ASC', - ArgumentsDesc = 'ARGUMENTS_DESC', - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - DataAsc = 'DATA_ASC', - DataDesc = 'DATA_DESC', - DocsAsc = 'DOCS_ASC', - DocsDesc = 'DOCS_DESC', - ExtrinsicIdAsc = 'EXTRINSIC_ID_ASC', - ExtrinsicIdDesc = 'EXTRINSIC_ID_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - IndexAsc = 'INDEX_ASC', - IndexDesc = 'INDEX_DESC', - MethodAsc = 'METHOD_ASC', - MethodDesc = 'METHOD_DESC', - ModuleAsc = 'MODULE_ASC', - ModuleDesc = 'MODULE_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - TimestampAsc = 'TIMESTAMP_ASC', - TimestampDesc = 'TIMESTAMP_DESC', -} - -export type Extrinsic = Node & { - __typename?: 'Extrinsic'; - arguments?: Maybe; - /** Reads a single `Block` that is related to this `Extrinsic`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['BigFloat']; - /** Reads and enables pagination through a set of `Block`. */ - blocksByEventExtrinsicIdAndBlockId: ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection; - /** Reads and enables pagination through a set of `Event`. */ - events: EventsConnection; - hash: Scalars['String']; - id: Scalars['String']; - index: Scalars['Int']; - isSigned?: Maybe; - isSuccess?: Maybe; - method?: Maybe; - module?: Maybe; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads a single `Account` that is related to this `Extrinsic`. */ - signer?: Maybe; - signerId?: Maybe; -}; - -export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ExtrinsicEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ExtrinsicAggregates = { - __typename?: 'ExtrinsicAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ExtrinsicAverageAggregates = { - __typename?: 'ExtrinsicAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Mean average of index across the matching connection */ - index?: Maybe; -}; - -/** A connection to a list of `Block` values, with data from `Event`. */ -export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection = { - __typename?: 'ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `Event`, and the 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']; -}; - -/** A connection to a list of `Block` values, with data from `Event`. */ -export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `Event`. */ -export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge = { - __typename?: 'ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `Event`. */ - events: EventsConnection; - /** The `Block` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Block` edge in the connection, with data from `Event`. */ -export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdgeEventsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ExtrinsicDistinctCountAggregates = { - __typename?: 'ExtrinsicDistinctCountAggregates'; - /** Distinct count of arguments across the matching connection */ - arguments?: Maybe; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of hash across the matching connection */ - hash?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of index across the matching connection */ - index?: Maybe; - /** Distinct count of isSigned across the matching connection */ - isSigned?: Maybe; - /** Distinct count of isSuccess across the matching connection */ - isSuccess?: Maybe; - /** Distinct count of method across the matching connection */ - method?: Maybe; - /** Distinct count of module across the matching connection */ - module?: Maybe; - /** Distinct count of signerId across the matching connection */ - signerId?: Maybe; -}; - -/** A filter to be used against `Extrinsic` object types. All fields are combined with a logical ‘and.’ */ -export type ExtrinsicFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `arguments` field. */ - arguments?: InputMaybe; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `hash` field. */ - hash?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `index` field. */ - index?: InputMaybe; - /** Filter by the object’s `isSigned` field. */ - isSigned?: InputMaybe; - /** Filter by the object’s `isSuccess` field. */ - isSuccess?: InputMaybe; - /** Filter by the object’s `method` field. */ - method?: InputMaybe; - /** Filter by the object’s `module` field. */ - module?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `signerId` field. */ - signerId?: InputMaybe; -}; - -export type ExtrinsicMaxAggregates = { - __typename?: 'ExtrinsicMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Maximum of index across the matching connection */ - index?: Maybe; -}; - -export type ExtrinsicMinAggregates = { - __typename?: 'ExtrinsicMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Minimum of index across the matching connection */ - index?: Maybe; -}; - -export type ExtrinsicStddevPopulationAggregates = { - __typename?: 'ExtrinsicStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population standard deviation of index across the matching connection */ - index?: Maybe; -}; - -export type ExtrinsicStddevSampleAggregates = { - __typename?: 'ExtrinsicStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample standard deviation of index across the matching connection */ - index?: Maybe; -}; - -export type ExtrinsicSumAggregates = { - __typename?: 'ExtrinsicSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigFloat']; - /** Sum of index across the matching connection */ - index: Scalars['BigInt']; -}; - -export type ExtrinsicVariancePopulationAggregates = { - __typename?: 'ExtrinsicVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population variance of index across the matching connection */ - index?: Maybe; -}; - -export type ExtrinsicVarianceSampleAggregates = { - __typename?: 'ExtrinsicVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample variance of index across the matching connection */ - index?: Maybe; -}; - -/** A connection to a list of `Extrinsic` values. */ -export type ExtrinsicsConnection = { - __typename?: 'ExtrinsicsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Extrinsic` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Extrinsic` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Extrinsic` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Extrinsic` values. */ -export type ExtrinsicsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Extrinsic` edge in the connection. */ -export type ExtrinsicsEdge = { - __typename?: 'ExtrinsicsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Extrinsic` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Extrinsic` for usage during aggregation. */ -export enum ExtrinsicsGroupBy { - Arguments = 'ARGUMENTS', - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Hash = 'HASH', - Index = 'INDEX', - IsSigned = 'IS_SIGNED', - IsSuccess = 'IS_SUCCESS', - Method = 'METHOD', - Module = 'MODULE', - SignerId = 'SIGNER_ID', -} - -export type ExtrinsicsHavingAverageInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingDistinctCountInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -/** Conditions for `Extrinsic` aggregates. */ -export type ExtrinsicsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ExtrinsicsHavingMaxInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingMinInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingStddevPopulationInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingStddevSampleInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingSumInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingVariancePopulationInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -export type ExtrinsicsHavingVarianceSampleInput = { - blockNumber?: InputMaybe; - index?: InputMaybe; -}; - -/** Methods to use when ordering `Extrinsic`. */ -export enum ExtrinsicsOrderBy { - ArgumentsAsc = 'ARGUMENTS_ASC', - ArgumentsDesc = 'ARGUMENTS_DESC', - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - EventsAverageArgumentsAsc = 'EVENTS_AVERAGE_ARGUMENTS_ASC', - EventsAverageArgumentsDesc = 'EVENTS_AVERAGE_ARGUMENTS_DESC', - EventsAverageBlockIdAsc = 'EVENTS_AVERAGE_BLOCK_ID_ASC', - EventsAverageBlockIdDesc = 'EVENTS_AVERAGE_BLOCK_ID_DESC', - EventsAverageBlockNumberAsc = 'EVENTS_AVERAGE_BLOCK_NUMBER_ASC', - EventsAverageBlockNumberDesc = 'EVENTS_AVERAGE_BLOCK_NUMBER_DESC', - EventsAverageDataAsc = 'EVENTS_AVERAGE_DATA_ASC', - EventsAverageDataDesc = 'EVENTS_AVERAGE_DATA_DESC', - EventsAverageDocsAsc = 'EVENTS_AVERAGE_DOCS_ASC', - EventsAverageDocsDesc = 'EVENTS_AVERAGE_DOCS_DESC', - EventsAverageExtrinsicIdAsc = 'EVENTS_AVERAGE_EXTRINSIC_ID_ASC', - EventsAverageExtrinsicIdDesc = 'EVENTS_AVERAGE_EXTRINSIC_ID_DESC', - EventsAverageIdAsc = 'EVENTS_AVERAGE_ID_ASC', - EventsAverageIdDesc = 'EVENTS_AVERAGE_ID_DESC', - EventsAverageIndexAsc = 'EVENTS_AVERAGE_INDEX_ASC', - EventsAverageIndexDesc = 'EVENTS_AVERAGE_INDEX_DESC', - EventsAverageMethodAsc = 'EVENTS_AVERAGE_METHOD_ASC', - EventsAverageMethodDesc = 'EVENTS_AVERAGE_METHOD_DESC', - EventsAverageModuleAsc = 'EVENTS_AVERAGE_MODULE_ASC', - EventsAverageModuleDesc = 'EVENTS_AVERAGE_MODULE_DESC', - EventsAverageTimestampAsc = 'EVENTS_AVERAGE_TIMESTAMP_ASC', - EventsAverageTimestampDesc = 'EVENTS_AVERAGE_TIMESTAMP_DESC', - EventsCountAsc = 'EVENTS_COUNT_ASC', - EventsCountDesc = 'EVENTS_COUNT_DESC', - EventsDistinctCountArgumentsAsc = 'EVENTS_DISTINCT_COUNT_ARGUMENTS_ASC', - EventsDistinctCountArgumentsDesc = 'EVENTS_DISTINCT_COUNT_ARGUMENTS_DESC', - EventsDistinctCountBlockIdAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC', - EventsDistinctCountBlockIdDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC', - EventsDistinctCountBlockNumberAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - EventsDistinctCountBlockNumberDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - EventsDistinctCountDataAsc = 'EVENTS_DISTINCT_COUNT_DATA_ASC', - EventsDistinctCountDataDesc = 'EVENTS_DISTINCT_COUNT_DATA_DESC', - EventsDistinctCountDocsAsc = 'EVENTS_DISTINCT_COUNT_DOCS_ASC', - EventsDistinctCountDocsDesc = 'EVENTS_DISTINCT_COUNT_DOCS_DESC', - EventsDistinctCountExtrinsicIdAsc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC', - EventsDistinctCountExtrinsicIdDesc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC', - EventsDistinctCountIdAsc = 'EVENTS_DISTINCT_COUNT_ID_ASC', - EventsDistinctCountIdDesc = 'EVENTS_DISTINCT_COUNT_ID_DESC', - EventsDistinctCountIndexAsc = 'EVENTS_DISTINCT_COUNT_INDEX_ASC', - EventsDistinctCountIndexDesc = 'EVENTS_DISTINCT_COUNT_INDEX_DESC', - EventsDistinctCountMethodAsc = 'EVENTS_DISTINCT_COUNT_METHOD_ASC', - EventsDistinctCountMethodDesc = 'EVENTS_DISTINCT_COUNT_METHOD_DESC', - EventsDistinctCountModuleAsc = 'EVENTS_DISTINCT_COUNT_MODULE_ASC', - EventsDistinctCountModuleDesc = 'EVENTS_DISTINCT_COUNT_MODULE_DESC', - EventsDistinctCountTimestampAsc = 'EVENTS_DISTINCT_COUNT_TIMESTAMP_ASC', - EventsDistinctCountTimestampDesc = 'EVENTS_DISTINCT_COUNT_TIMESTAMP_DESC', - EventsMaxArgumentsAsc = 'EVENTS_MAX_ARGUMENTS_ASC', - EventsMaxArgumentsDesc = 'EVENTS_MAX_ARGUMENTS_DESC', - EventsMaxBlockIdAsc = 'EVENTS_MAX_BLOCK_ID_ASC', - EventsMaxBlockIdDesc = 'EVENTS_MAX_BLOCK_ID_DESC', - EventsMaxBlockNumberAsc = 'EVENTS_MAX_BLOCK_NUMBER_ASC', - EventsMaxBlockNumberDesc = 'EVENTS_MAX_BLOCK_NUMBER_DESC', - EventsMaxDataAsc = 'EVENTS_MAX_DATA_ASC', - EventsMaxDataDesc = 'EVENTS_MAX_DATA_DESC', - EventsMaxDocsAsc = 'EVENTS_MAX_DOCS_ASC', - EventsMaxDocsDesc = 'EVENTS_MAX_DOCS_DESC', - EventsMaxExtrinsicIdAsc = 'EVENTS_MAX_EXTRINSIC_ID_ASC', - EventsMaxExtrinsicIdDesc = 'EVENTS_MAX_EXTRINSIC_ID_DESC', - EventsMaxIdAsc = 'EVENTS_MAX_ID_ASC', - EventsMaxIdDesc = 'EVENTS_MAX_ID_DESC', - EventsMaxIndexAsc = 'EVENTS_MAX_INDEX_ASC', - EventsMaxIndexDesc = 'EVENTS_MAX_INDEX_DESC', - EventsMaxMethodAsc = 'EVENTS_MAX_METHOD_ASC', - EventsMaxMethodDesc = 'EVENTS_MAX_METHOD_DESC', - EventsMaxModuleAsc = 'EVENTS_MAX_MODULE_ASC', - EventsMaxModuleDesc = 'EVENTS_MAX_MODULE_DESC', - EventsMaxTimestampAsc = 'EVENTS_MAX_TIMESTAMP_ASC', - EventsMaxTimestampDesc = 'EVENTS_MAX_TIMESTAMP_DESC', - EventsMinArgumentsAsc = 'EVENTS_MIN_ARGUMENTS_ASC', - EventsMinArgumentsDesc = 'EVENTS_MIN_ARGUMENTS_DESC', - EventsMinBlockIdAsc = 'EVENTS_MIN_BLOCK_ID_ASC', - EventsMinBlockIdDesc = 'EVENTS_MIN_BLOCK_ID_DESC', - EventsMinBlockNumberAsc = 'EVENTS_MIN_BLOCK_NUMBER_ASC', - EventsMinBlockNumberDesc = 'EVENTS_MIN_BLOCK_NUMBER_DESC', - EventsMinDataAsc = 'EVENTS_MIN_DATA_ASC', - EventsMinDataDesc = 'EVENTS_MIN_DATA_DESC', - EventsMinDocsAsc = 'EVENTS_MIN_DOCS_ASC', - EventsMinDocsDesc = 'EVENTS_MIN_DOCS_DESC', - EventsMinExtrinsicIdAsc = 'EVENTS_MIN_EXTRINSIC_ID_ASC', - EventsMinExtrinsicIdDesc = 'EVENTS_MIN_EXTRINSIC_ID_DESC', - EventsMinIdAsc = 'EVENTS_MIN_ID_ASC', - EventsMinIdDesc = 'EVENTS_MIN_ID_DESC', - EventsMinIndexAsc = 'EVENTS_MIN_INDEX_ASC', - EventsMinIndexDesc = 'EVENTS_MIN_INDEX_DESC', - EventsMinMethodAsc = 'EVENTS_MIN_METHOD_ASC', - EventsMinMethodDesc = 'EVENTS_MIN_METHOD_DESC', - EventsMinModuleAsc = 'EVENTS_MIN_MODULE_ASC', - EventsMinModuleDesc = 'EVENTS_MIN_MODULE_DESC', - EventsMinTimestampAsc = 'EVENTS_MIN_TIMESTAMP_ASC', - EventsMinTimestampDesc = 'EVENTS_MIN_TIMESTAMP_DESC', - EventsStddevPopulationArgumentsAsc = 'EVENTS_STDDEV_POPULATION_ARGUMENTS_ASC', - EventsStddevPopulationArgumentsDesc = 'EVENTS_STDDEV_POPULATION_ARGUMENTS_DESC', - EventsStddevPopulationBlockIdAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC', - EventsStddevPopulationBlockIdDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC', - EventsStddevPopulationBlockNumberAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - EventsStddevPopulationBlockNumberDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - EventsStddevPopulationDataAsc = 'EVENTS_STDDEV_POPULATION_DATA_ASC', - EventsStddevPopulationDataDesc = 'EVENTS_STDDEV_POPULATION_DATA_DESC', - EventsStddevPopulationDocsAsc = 'EVENTS_STDDEV_POPULATION_DOCS_ASC', - EventsStddevPopulationDocsDesc = 'EVENTS_STDDEV_POPULATION_DOCS_DESC', - EventsStddevPopulationExtrinsicIdAsc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC', - EventsStddevPopulationExtrinsicIdDesc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC', - EventsStddevPopulationIdAsc = 'EVENTS_STDDEV_POPULATION_ID_ASC', - EventsStddevPopulationIdDesc = 'EVENTS_STDDEV_POPULATION_ID_DESC', - EventsStddevPopulationIndexAsc = 'EVENTS_STDDEV_POPULATION_INDEX_ASC', - EventsStddevPopulationIndexDesc = 'EVENTS_STDDEV_POPULATION_INDEX_DESC', - EventsStddevPopulationMethodAsc = 'EVENTS_STDDEV_POPULATION_METHOD_ASC', - EventsStddevPopulationMethodDesc = 'EVENTS_STDDEV_POPULATION_METHOD_DESC', - EventsStddevPopulationModuleAsc = 'EVENTS_STDDEV_POPULATION_MODULE_ASC', - EventsStddevPopulationModuleDesc = 'EVENTS_STDDEV_POPULATION_MODULE_DESC', - EventsStddevPopulationTimestampAsc = 'EVENTS_STDDEV_POPULATION_TIMESTAMP_ASC', - EventsStddevPopulationTimestampDesc = 'EVENTS_STDDEV_POPULATION_TIMESTAMP_DESC', - EventsStddevSampleArgumentsAsc = 'EVENTS_STDDEV_SAMPLE_ARGUMENTS_ASC', - EventsStddevSampleArgumentsDesc = 'EVENTS_STDDEV_SAMPLE_ARGUMENTS_DESC', - EventsStddevSampleBlockIdAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC', - EventsStddevSampleBlockIdDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC', - EventsStddevSampleBlockNumberAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - EventsStddevSampleBlockNumberDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - EventsStddevSampleDataAsc = 'EVENTS_STDDEV_SAMPLE_DATA_ASC', - EventsStddevSampleDataDesc = 'EVENTS_STDDEV_SAMPLE_DATA_DESC', - EventsStddevSampleDocsAsc = 'EVENTS_STDDEV_SAMPLE_DOCS_ASC', - EventsStddevSampleDocsDesc = 'EVENTS_STDDEV_SAMPLE_DOCS_DESC', - EventsStddevSampleExtrinsicIdAsc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', - EventsStddevSampleExtrinsicIdDesc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', - EventsStddevSampleIdAsc = 'EVENTS_STDDEV_SAMPLE_ID_ASC', - EventsStddevSampleIdDesc = 'EVENTS_STDDEV_SAMPLE_ID_DESC', - EventsStddevSampleIndexAsc = 'EVENTS_STDDEV_SAMPLE_INDEX_ASC', - EventsStddevSampleIndexDesc = 'EVENTS_STDDEV_SAMPLE_INDEX_DESC', - EventsStddevSampleMethodAsc = 'EVENTS_STDDEV_SAMPLE_METHOD_ASC', - EventsStddevSampleMethodDesc = 'EVENTS_STDDEV_SAMPLE_METHOD_DESC', - EventsStddevSampleModuleAsc = 'EVENTS_STDDEV_SAMPLE_MODULE_ASC', - EventsStddevSampleModuleDesc = 'EVENTS_STDDEV_SAMPLE_MODULE_DESC', - EventsStddevSampleTimestampAsc = 'EVENTS_STDDEV_SAMPLE_TIMESTAMP_ASC', - EventsStddevSampleTimestampDesc = 'EVENTS_STDDEV_SAMPLE_TIMESTAMP_DESC', - EventsSumArgumentsAsc = 'EVENTS_SUM_ARGUMENTS_ASC', - EventsSumArgumentsDesc = 'EVENTS_SUM_ARGUMENTS_DESC', - EventsSumBlockIdAsc = 'EVENTS_SUM_BLOCK_ID_ASC', - EventsSumBlockIdDesc = 'EVENTS_SUM_BLOCK_ID_DESC', - EventsSumBlockNumberAsc = 'EVENTS_SUM_BLOCK_NUMBER_ASC', - EventsSumBlockNumberDesc = 'EVENTS_SUM_BLOCK_NUMBER_DESC', - EventsSumDataAsc = 'EVENTS_SUM_DATA_ASC', - EventsSumDataDesc = 'EVENTS_SUM_DATA_DESC', - EventsSumDocsAsc = 'EVENTS_SUM_DOCS_ASC', - EventsSumDocsDesc = 'EVENTS_SUM_DOCS_DESC', - EventsSumExtrinsicIdAsc = 'EVENTS_SUM_EXTRINSIC_ID_ASC', - EventsSumExtrinsicIdDesc = 'EVENTS_SUM_EXTRINSIC_ID_DESC', - EventsSumIdAsc = 'EVENTS_SUM_ID_ASC', - EventsSumIdDesc = 'EVENTS_SUM_ID_DESC', - EventsSumIndexAsc = 'EVENTS_SUM_INDEX_ASC', - EventsSumIndexDesc = 'EVENTS_SUM_INDEX_DESC', - EventsSumMethodAsc = 'EVENTS_SUM_METHOD_ASC', - EventsSumMethodDesc = 'EVENTS_SUM_METHOD_DESC', - EventsSumModuleAsc = 'EVENTS_SUM_MODULE_ASC', - EventsSumModuleDesc = 'EVENTS_SUM_MODULE_DESC', - EventsSumTimestampAsc = 'EVENTS_SUM_TIMESTAMP_ASC', - EventsSumTimestampDesc = 'EVENTS_SUM_TIMESTAMP_DESC', - EventsVariancePopulationArgumentsAsc = 'EVENTS_VARIANCE_POPULATION_ARGUMENTS_ASC', - EventsVariancePopulationArgumentsDesc = 'EVENTS_VARIANCE_POPULATION_ARGUMENTS_DESC', - EventsVariancePopulationBlockIdAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC', - EventsVariancePopulationBlockIdDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC', - EventsVariancePopulationBlockNumberAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - EventsVariancePopulationBlockNumberDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - EventsVariancePopulationDataAsc = 'EVENTS_VARIANCE_POPULATION_DATA_ASC', - EventsVariancePopulationDataDesc = 'EVENTS_VARIANCE_POPULATION_DATA_DESC', - EventsVariancePopulationDocsAsc = 'EVENTS_VARIANCE_POPULATION_DOCS_ASC', - EventsVariancePopulationDocsDesc = 'EVENTS_VARIANCE_POPULATION_DOCS_DESC', - EventsVariancePopulationExtrinsicIdAsc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', - EventsVariancePopulationExtrinsicIdDesc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', - EventsVariancePopulationIdAsc = 'EVENTS_VARIANCE_POPULATION_ID_ASC', - EventsVariancePopulationIdDesc = 'EVENTS_VARIANCE_POPULATION_ID_DESC', - EventsVariancePopulationIndexAsc = 'EVENTS_VARIANCE_POPULATION_INDEX_ASC', - EventsVariancePopulationIndexDesc = 'EVENTS_VARIANCE_POPULATION_INDEX_DESC', - EventsVariancePopulationMethodAsc = 'EVENTS_VARIANCE_POPULATION_METHOD_ASC', - EventsVariancePopulationMethodDesc = 'EVENTS_VARIANCE_POPULATION_METHOD_DESC', - EventsVariancePopulationModuleAsc = 'EVENTS_VARIANCE_POPULATION_MODULE_ASC', - EventsVariancePopulationModuleDesc = 'EVENTS_VARIANCE_POPULATION_MODULE_DESC', - EventsVariancePopulationTimestampAsc = 'EVENTS_VARIANCE_POPULATION_TIMESTAMP_ASC', - EventsVariancePopulationTimestampDesc = 'EVENTS_VARIANCE_POPULATION_TIMESTAMP_DESC', - EventsVarianceSampleArgumentsAsc = 'EVENTS_VARIANCE_SAMPLE_ARGUMENTS_ASC', - EventsVarianceSampleArgumentsDesc = 'EVENTS_VARIANCE_SAMPLE_ARGUMENTS_DESC', - EventsVarianceSampleBlockIdAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - EventsVarianceSampleBlockIdDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - EventsVarianceSampleBlockNumberAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - EventsVarianceSampleBlockNumberDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - EventsVarianceSampleDataAsc = 'EVENTS_VARIANCE_SAMPLE_DATA_ASC', - EventsVarianceSampleDataDesc = 'EVENTS_VARIANCE_SAMPLE_DATA_DESC', - EventsVarianceSampleDocsAsc = 'EVENTS_VARIANCE_SAMPLE_DOCS_ASC', - EventsVarianceSampleDocsDesc = 'EVENTS_VARIANCE_SAMPLE_DOCS_DESC', - EventsVarianceSampleExtrinsicIdAsc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', - EventsVarianceSampleExtrinsicIdDesc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', - EventsVarianceSampleIdAsc = 'EVENTS_VARIANCE_SAMPLE_ID_ASC', - EventsVarianceSampleIdDesc = 'EVENTS_VARIANCE_SAMPLE_ID_DESC', - EventsVarianceSampleIndexAsc = 'EVENTS_VARIANCE_SAMPLE_INDEX_ASC', - EventsVarianceSampleIndexDesc = 'EVENTS_VARIANCE_SAMPLE_INDEX_DESC', - EventsVarianceSampleMethodAsc = 'EVENTS_VARIANCE_SAMPLE_METHOD_ASC', - EventsVarianceSampleMethodDesc = 'EVENTS_VARIANCE_SAMPLE_METHOD_DESC', - EventsVarianceSampleModuleAsc = 'EVENTS_VARIANCE_SAMPLE_MODULE_ASC', - EventsVarianceSampleModuleDesc = 'EVENTS_VARIANCE_SAMPLE_MODULE_DESC', - EventsVarianceSampleTimestampAsc = 'EVENTS_VARIANCE_SAMPLE_TIMESTAMP_ASC', - EventsVarianceSampleTimestampDesc = 'EVENTS_VARIANCE_SAMPLE_TIMESTAMP_DESC', - HashAsc = 'HASH_ASC', - HashDesc = 'HASH_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - IndexAsc = 'INDEX_ASC', - IndexDesc = 'INDEX_DESC', - IsSignedAsc = 'IS_SIGNED_ASC', - IsSignedDesc = 'IS_SIGNED_DESC', - IsSuccessAsc = 'IS_SUCCESS_ASC', - IsSuccessDesc = 'IS_SUCCESS_DESC', - MethodAsc = 'METHOD_ASC', - MethodDesc = 'METHOD_DESC', - ModuleAsc = 'MODULE_ASC', - ModuleDesc = 'MODULE_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SignerIdAsc = 'SIGNER_ID_ASC', - SignerIdDesc = 'SIGNER_ID_DESC', -} - -export type HavingBigfloatFilter = { - equalTo?: InputMaybe; - greaterThan?: InputMaybe; - greaterThanOrEqualTo?: InputMaybe; - lessThan?: InputMaybe; - lessThanOrEqualTo?: InputMaybe; - notEqualTo?: InputMaybe; -}; - -export type HavingDatetimeFilter = { - equalTo?: InputMaybe; - greaterThan?: InputMaybe; - greaterThanOrEqualTo?: InputMaybe; - lessThan?: InputMaybe; - lessThanOrEqualTo?: InputMaybe; - notEqualTo?: InputMaybe; -}; - -export type HavingIntFilter = { - equalTo?: InputMaybe; - greaterThan?: InputMaybe; - greaterThanOrEqualTo?: InputMaybe; - lessThan?: InputMaybe; - lessThanOrEqualTo?: InputMaybe; - notEqualTo?: InputMaybe; -}; - -export type HeartBeat = Node & { - __typename?: 'HeartBeat'; - /** Reads a single `Account` that is related to this `HeartBeat`. */ - account?: Maybe; - accountId: Scalars['String']; - blockNumber: Scalars['BigFloat']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads a single `Session` that is related to this `HeartBeat`. */ - session?: Maybe; - sessionId: Scalars['String']; -}; - -export type HeartBeatAggregates = { - __typename?: 'HeartBeatAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type HeartBeatAverageAggregates = { - __typename?: 'HeartBeatAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type HeartBeatDistinctCountAggregates = { - __typename?: 'HeartBeatDistinctCountAggregates'; - /** Distinct count of accountId across the matching connection */ - accountId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of sessionId across the matching connection */ - sessionId?: Maybe; -}; - -/** A filter to be used against `HeartBeat` object types. All fields are combined with a logical ‘and.’ */ -export type HeartBeatFilter = { - /** Filter by the object’s `accountId` field. */ - accountId?: InputMaybe; - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `sessionId` field. */ - sessionId?: InputMaybe; -}; - -export type HeartBeatMaxAggregates = { - __typename?: 'HeartBeatMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type HeartBeatMinAggregates = { - __typename?: 'HeartBeatMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type HeartBeatStddevPopulationAggregates = { - __typename?: 'HeartBeatStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type HeartBeatStddevSampleAggregates = { - __typename?: 'HeartBeatStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type HeartBeatSumAggregates = { - __typename?: 'HeartBeatSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigFloat']; -}; - -export type HeartBeatVariancePopulationAggregates = { - __typename?: 'HeartBeatVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type HeartBeatVarianceSampleAggregates = { - __typename?: 'HeartBeatVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `HeartBeat` values. */ -export type HeartBeatsConnection = { - __typename?: 'HeartBeatsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `HeartBeat` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `HeartBeat` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `HeartBeat` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `HeartBeat` values. */ -export type HeartBeatsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `HeartBeat` edge in the connection. */ -export type HeartBeatsEdge = { - __typename?: 'HeartBeatsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `HeartBeat` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `HeartBeat` for usage during aggregation. */ -export enum HeartBeatsGroupBy { - AccountId = 'ACCOUNT_ID', - BlockNumber = 'BLOCK_NUMBER', - SessionId = 'SESSION_ID', -} - -export type HeartBeatsHavingAverageInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingDistinctCountInput = { - blockNumber?: InputMaybe; -}; - -/** Conditions for `HeartBeat` aggregates. */ -export type HeartBeatsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type HeartBeatsHavingMaxInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingMinInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingStddevPopulationInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingStddevSampleInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingSumInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingVariancePopulationInput = { - blockNumber?: InputMaybe; -}; - -export type HeartBeatsHavingVarianceSampleInput = { - blockNumber?: InputMaybe; -}; - -/** Methods to use when ordering `HeartBeat`. */ -export enum HeartBeatsOrderBy { - AccountIdAsc = 'ACCOUNT_ID_ASC', - AccountIdDesc = 'ACCOUNT_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SessionIdAsc = 'SESSION_ID_ASC', - SessionIdDesc = 'SESSION_ID_DESC', -} - -/** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */ -export type IntFilter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -/** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */ -export type JsonFilter = { - /** Contained by the specified JSON. */ - containedBy?: InputMaybe; - /** Contains the specified JSON. */ - contains?: InputMaybe; - /** Contains all of the specified keys. */ - containsAllKeys?: InputMaybe>; - /** Contains any of the specified keys. */ - containsAnyKeys?: InputMaybe>; - /** Contains the specified key. */ - containsKey?: InputMaybe; - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; -}; - -export type KeygenThreshold = Node & { - __typename?: 'KeygenThreshold'; - /** Reads a single `Block` that is related to this `KeygenThreshold`. */ - block?: Maybe; - blockId: Scalars['String']; - current?: Maybe; - id: Scalars['String']; - next?: Maybe; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - pending?: Maybe; -}; - -export type KeygenThresholdAggregates = { - __typename?: 'KeygenThresholdAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type KeygenThresholdAverageAggregates = { - __typename?: 'KeygenThresholdAverageAggregates'; - /** Mean average of current across the matching connection */ - current?: Maybe; - /** Mean average of next across the matching connection */ - next?: Maybe; - /** Mean average of pending across the matching connection */ - pending?: Maybe; -}; - -export type KeygenThresholdDistinctCountAggregates = { - __typename?: 'KeygenThresholdDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of current across the matching connection */ - current?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of next across the matching connection */ - next?: Maybe; - /** Distinct count of pending across the matching connection */ - pending?: Maybe; -}; - -/** A filter to be used against `KeygenThreshold` object types. All fields are combined with a logical ‘and.’ */ -export type KeygenThresholdFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `current` field. */ - current?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `next` field. */ - next?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `pending` field. */ - pending?: InputMaybe; -}; - -export type KeygenThresholdMaxAggregates = { - __typename?: 'KeygenThresholdMaxAggregates'; - /** Maximum of current across the matching connection */ - current?: Maybe; - /** Maximum of next across the matching connection */ - next?: Maybe; - /** Maximum of pending across the matching connection */ - pending?: Maybe; -}; - -export type KeygenThresholdMinAggregates = { - __typename?: 'KeygenThresholdMinAggregates'; - /** Minimum of current across the matching connection */ - current?: Maybe; - /** Minimum of next across the matching connection */ - next?: Maybe; - /** Minimum of pending across the matching connection */ - pending?: Maybe; -}; - -export type KeygenThresholdStddevPopulationAggregates = { - __typename?: 'KeygenThresholdStddevPopulationAggregates'; - /** Population standard deviation of current across the matching connection */ - current?: Maybe; - /** Population standard deviation of next across the matching connection */ - next?: Maybe; - /** Population standard deviation of pending across the matching connection */ - pending?: Maybe; -}; - -export type KeygenThresholdStddevSampleAggregates = { - __typename?: 'KeygenThresholdStddevSampleAggregates'; - /** Sample standard deviation of current across the matching connection */ - current?: Maybe; - /** Sample standard deviation of next across the matching connection */ - next?: Maybe; - /** Sample standard deviation of pending across the matching connection */ - pending?: Maybe; -}; - -export type KeygenThresholdSumAggregates = { - __typename?: 'KeygenThresholdSumAggregates'; - /** Sum of current across the matching connection */ - current: Scalars['BigInt']; - /** Sum of next across the matching connection */ - next: Scalars['BigInt']; - /** Sum of pending across the matching connection */ - pending: Scalars['BigInt']; -}; - -export type KeygenThresholdVariancePopulationAggregates = { - __typename?: 'KeygenThresholdVariancePopulationAggregates'; - /** Population variance of current across the matching connection */ - current?: Maybe; - /** Population variance of next across the matching connection */ - next?: Maybe; - /** Population variance of pending across the matching connection */ - pending?: Maybe; -}; - -export type KeygenThresholdVarianceSampleAggregates = { - __typename?: 'KeygenThresholdVarianceSampleAggregates'; - /** Sample variance of current across the matching connection */ - current?: Maybe; - /** Sample variance of next across the matching connection */ - next?: Maybe; - /** Sample variance of pending across the matching connection */ - pending?: Maybe; -}; - -/** A connection to a list of `KeygenThreshold` values. */ -export type KeygenThresholdsConnection = { - __typename?: 'KeygenThresholdsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `KeygenThreshold` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `KeygenThreshold` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `KeygenThreshold` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `KeygenThreshold` values. */ -export type KeygenThresholdsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `KeygenThreshold` edge in the connection. */ -export type KeygenThresholdsEdge = { - __typename?: 'KeygenThresholdsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `KeygenThreshold` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `KeygenThreshold` for usage during aggregation. */ -export enum KeygenThresholdsGroupBy { - BlockId = 'BLOCK_ID', - Current = 'CURRENT', - Next = 'NEXT', - Pending = 'PENDING', -} - -export type KeygenThresholdsHavingAverageInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingDistinctCountInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -/** Conditions for `KeygenThreshold` aggregates. */ -export type KeygenThresholdsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type KeygenThresholdsHavingMaxInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingMinInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingStddevPopulationInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingStddevSampleInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingSumInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingVariancePopulationInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type KeygenThresholdsHavingVarianceSampleInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -/** Methods to use when ordering `KeygenThreshold`. */ -export enum KeygenThresholdsOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - CurrentAsc = 'CURRENT_ASC', - CurrentDesc = 'CURRENT_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - NextAsc = 'NEXT_ASC', - NextDesc = 'NEXT_DESC', - PendingAsc = 'PENDING_ASC', - PendingDesc = 'PENDING_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', -} - -/** An object with a globally unique `ID`. */ -export type Node = { - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; -}; - -/** Information about pagination in a connection. */ -export type PageInfo = { - __typename?: 'PageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; - -export type ProposalCounter = Node & { - __typename?: 'ProposalCounter'; - /** Reads a single `Block` that is related to this `ProposalCounter`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['Int']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - signedProposalsCount: Scalars['Int']; - signedProposalsMap?: Maybe; - statusMap?: Maybe; - unSignedProposalsCount: Scalars['Int']; - unSignedProposalsMap?: Maybe; -}; - -export type ProposalCounterAggregates = { - __typename?: 'ProposalCounterAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ProposalCounterAverageAggregates = { - __typename?: 'ProposalCounterAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Mean average of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Mean average of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -export type ProposalCounterDistinctCountAggregates = { - __typename?: 'ProposalCounterDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Distinct count of signedProposalsMap across the matching connection */ - signedProposalsMap?: Maybe; - /** Distinct count of statusMap across the matching connection */ - statusMap?: Maybe; - /** Distinct count of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; - /** Distinct count of unSignedProposalsMap across the matching connection */ - unSignedProposalsMap?: Maybe; -}; - -/** A filter to be used against `ProposalCounter` object types. All fields are combined with a logical ‘and.’ */ -export type ProposalCounterFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `signedProposalsCount` field. */ - signedProposalsCount?: InputMaybe; - /** Filter by the object’s `signedProposalsMap` field. */ - signedProposalsMap?: InputMaybe; - /** Filter by the object’s `statusMap` field. */ - statusMap?: InputMaybe; - /** Filter by the object’s `unSignedProposalsCount` field. */ - unSignedProposalsCount?: InputMaybe; - /** Filter by the object’s `unSignedProposalsMap` field. */ - unSignedProposalsMap?: InputMaybe; -}; - -export type ProposalCounterMaxAggregates = { - __typename?: 'ProposalCounterMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Maximum of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Maximum of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -export type ProposalCounterMinAggregates = { - __typename?: 'ProposalCounterMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Minimum of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Minimum of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -export type ProposalCounterStddevPopulationAggregates = { - __typename?: 'ProposalCounterStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population standard deviation of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Population standard deviation of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -export type ProposalCounterStddevSampleAggregates = { - __typename?: 'ProposalCounterStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample standard deviation of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Sample standard deviation of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -export type ProposalCounterSumAggregates = { - __typename?: 'ProposalCounterSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigInt']; - /** Sum of signedProposalsCount across the matching connection */ - signedProposalsCount: Scalars['BigInt']; - /** Sum of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount: Scalars['BigInt']; -}; - -export type ProposalCounterVariancePopulationAggregates = { - __typename?: 'ProposalCounterVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population variance of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Population variance of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -export type ProposalCounterVarianceSampleAggregates = { - __typename?: 'ProposalCounterVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample variance of signedProposalsCount across the matching connection */ - signedProposalsCount?: Maybe; - /** Sample variance of unSignedProposalsCount across the matching connection */ - unSignedProposalsCount?: Maybe; -}; - -/** A connection to a list of `ProposalCounter` values. */ -export type ProposalCountersConnection = { - __typename?: 'ProposalCountersConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalCounter` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalCounter` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalCounter` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `ProposalCounter` values. */ -export type ProposalCountersConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `ProposalCounter` edge in the connection. */ -export type ProposalCountersEdge = { - __typename?: 'ProposalCountersEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalCounter` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `ProposalCounter` for usage during aggregation. */ -export enum ProposalCountersGroupBy { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - SignedProposalsCount = 'SIGNED_PROPOSALS_COUNT', - SignedProposalsMap = 'SIGNED_PROPOSALS_MAP', - StatusMap = 'STATUS_MAP', - UnSignedProposalsCount = 'UN_SIGNED_PROPOSALS_COUNT', - UnSignedProposalsMap = 'UN_SIGNED_PROPOSALS_MAP', -} - -export type ProposalCountersHavingAverageInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingDistinctCountInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -/** Conditions for `ProposalCounter` aggregates. */ -export type ProposalCountersHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ProposalCountersHavingMaxInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingMinInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingStddevPopulationInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingStddevSampleInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingSumInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingVariancePopulationInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -export type ProposalCountersHavingVarianceSampleInput = { - blockNumber?: InputMaybe; - signedProposalsCount?: InputMaybe; - unSignedProposalsCount?: InputMaybe; -}; - -/** Methods to use when ordering `ProposalCounter`. */ -export enum ProposalCountersOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SignedProposalsCountAsc = 'SIGNED_PROPOSALS_COUNT_ASC', - SignedProposalsCountDesc = 'SIGNED_PROPOSALS_COUNT_DESC', - SignedProposalsMapAsc = 'SIGNED_PROPOSALS_MAP_ASC', - SignedProposalsMapDesc = 'SIGNED_PROPOSALS_MAP_DESC', - StatusMapAsc = 'STATUS_MAP_ASC', - StatusMapDesc = 'STATUS_MAP_DESC', - UnSignedProposalsCountAsc = 'UN_SIGNED_PROPOSALS_COUNT_ASC', - UnSignedProposalsCountDesc = 'UN_SIGNED_PROPOSALS_COUNT_DESC', - UnSignedProposalsMapAsc = 'UN_SIGNED_PROPOSALS_MAP_ASC', - UnSignedProposalsMapDesc = 'UN_SIGNED_PROPOSALS_MAP_DESC', -} - -export type ProposalItem = Node & { - __typename?: 'ProposalItem'; - /** Reads a single `Block` that is related to this `ProposalItem`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['Int']; - /** Reads and enables pagination through a set of `Block`. */ - blocksByProposalVoteProposalIdAndBlockId: ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection; - chainId?: Maybe; - data: Scalars['String']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - nonce: Scalars['Int']; - /** Reads and enables pagination through a set of `ProposalTimelineStatus`. */ - proposalTimelineStatuses: ProposalTimelineStatusesConnection; - /** Reads and enables pagination through a set of `ProposalVote`. */ - proposalVotesByProposalId: ProposalVotesConnection; - /** Reads and enables pagination through a set of `Proposer`. */ - proposersByProposalVoteProposalIdAndVoterId: ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection; - removed?: Maybe; - signature?: Maybe; - status: Scalars['String']; - type: AppEnumB6165934C8; - /** Reads and enables pagination through a set of `UnsignedProposalsQueueItem`. */ - unsignedProposalsQueueItemsByProposalId: UnsignedProposalsQueueItemsConnection; - /** Reads and enables pagination through a set of `UnsignedProposalsQueue`. */ - unsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueId: ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection; -}; - -export type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposalItemProposalTimelineStatusesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposalItemProposalVotesByProposalIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposalItemProposersByProposalVoteProposalIdAndVoterIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposalItemUnsignedProposalsQueueItemsByProposalIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ProposalItemAggregates = { - __typename?: 'ProposalItemAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ProposalItemAverageAggregates = { - __typename?: 'ProposalItemAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Mean average of chainId across the matching connection */ - chainId?: Maybe; - /** Mean average of nonce across the matching connection */ - nonce?: Maybe; -}; - -/** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection = - { - __typename?: 'ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ProposalVote`, and the 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']; - }; - -/** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdge = - { - __typename?: 'ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdge'; - /** 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 `ProposalVote`. */ - proposalVotes: ProposalVotesConnection; - }; - -/** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdgeProposalVotesArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ProposalItemDistinctCountAggregates = { - __typename?: 'ProposalItemDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of chainId across the matching connection */ - chainId?: Maybe; - /** Distinct count of data across the matching connection */ - data?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of nonce across the matching connection */ - nonce?: Maybe; - /** Distinct count of removed across the matching connection */ - removed?: Maybe; - /** Distinct count of signature across the matching connection */ - signature?: Maybe; - /** Distinct count of status across the matching connection */ - status?: Maybe; - /** Distinct count of type across the matching connection */ - type?: Maybe; -}; - -/** A filter to be used against `ProposalItem` object types. All fields are combined with a logical ‘and.’ */ -export type ProposalItemFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `chainId` field. */ - chainId?: InputMaybe; - /** Filter by the object’s `data` field. */ - data?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `nonce` field. */ - nonce?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `removed` field. */ - removed?: InputMaybe; - /** Filter by the object’s `signature` field. */ - signature?: InputMaybe; - /** Filter by the object’s `status` field. */ - status?: InputMaybe; - /** Filter by the object’s `type` field. */ - type?: InputMaybe; -}; - -export type ProposalItemMaxAggregates = { - __typename?: 'ProposalItemMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Maximum of chainId across the matching connection */ - chainId?: Maybe; - /** Maximum of nonce across the matching connection */ - nonce?: Maybe; -}; - -export type ProposalItemMinAggregates = { - __typename?: 'ProposalItemMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Minimum of chainId across the matching connection */ - chainId?: Maybe; - /** Minimum of nonce across the matching connection */ - nonce?: Maybe; -}; - -/** A connection to a list of `Proposer` values, with data from `ProposalVote`. */ -export type ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection = - { - __typename?: 'ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Proposer`, info from the `ProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Proposer` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Proposer` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Proposer` values, with data from `ProposalVote`. */ -export type ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Proposer` edge in the connection, with data from `ProposalVote`. */ -export type ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdge = - { - __typename?: 'ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Proposer` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `ProposalVote`. */ - votes: ProposalVotesConnection; - }; - -/** A `Proposer` edge in the connection, with data from `ProposalVote`. */ -export type ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdgeVotesArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ProposalItemStddevPopulationAggregates = { - __typename?: 'ProposalItemStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population standard deviation of chainId across the matching connection */ - chainId?: Maybe; - /** Population standard deviation of nonce across the matching connection */ - nonce?: Maybe; -}; - -export type ProposalItemStddevSampleAggregates = { - __typename?: 'ProposalItemStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample standard deviation of chainId across the matching connection */ - chainId?: Maybe; - /** Sample standard deviation of nonce across the matching connection */ - nonce?: Maybe; -}; - -export type ProposalItemSumAggregates = { - __typename?: 'ProposalItemSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigInt']; - /** Sum of chainId across the matching connection */ - chainId: Scalars['BigFloat']; - /** Sum of nonce across the matching connection */ - nonce: Scalars['BigInt']; -}; - -/** A connection to a list of `UnsignedProposalsQueue` values, with data from `UnsignedProposalsQueueItem`. */ -export type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection = - { - __typename?: 'ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `UnsignedProposalsQueue`, info from the `UnsignedProposalsQueueItem`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `UnsignedProposalsQueue` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `UnsignedProposalsQueue` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `UnsignedProposalsQueue` values, with data from `UnsignedProposalsQueueItem`. */ -export type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `UnsignedProposalsQueue` edge in the connection, with data from `UnsignedProposalsQueueItem`. */ -export type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdge = - { - __typename?: 'ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `UnsignedProposalsQueue` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `UnsignedProposalsQueueItem`. */ - unsignedProposalsQueueItemsByQueueId: UnsignedProposalsQueueItemsConnection; - }; - -/** A `UnsignedProposalsQueue` edge in the connection, with data from `UnsignedProposalsQueueItem`. */ -export type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdgeUnsignedProposalsQueueItemsByQueueIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ProposalItemVariancePopulationAggregates = { - __typename?: 'ProposalItemVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population variance of chainId across the matching connection */ - chainId?: Maybe; - /** Population variance of nonce across the matching connection */ - nonce?: Maybe; -}; - -export type ProposalItemVarianceSampleAggregates = { - __typename?: 'ProposalItemVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample variance of chainId across the matching connection */ - chainId?: Maybe; - /** Sample variance of nonce across the matching connection */ - nonce?: Maybe; -}; - -/** A connection to a list of `ProposalItem` values. */ -export type ProposalItemsConnection = { - __typename?: 'ProposalItemsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalItem` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalItem` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalItem` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `ProposalItem` values. */ -export type ProposalItemsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `ProposalItem` edge in the connection. */ -export type ProposalItemsEdge = { - __typename?: 'ProposalItemsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalItem` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `ProposalItem` for usage during aggregation. */ -export enum ProposalItemsGroupBy { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - ChainId = 'CHAIN_ID', - Data = 'DATA', - Nonce = 'NONCE', - Removed = 'REMOVED', - Signature = 'SIGNATURE', - Status = 'STATUS', - Type = 'TYPE', -} - -export type ProposalItemsHavingAverageInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingDistinctCountInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -/** Conditions for `ProposalItem` aggregates. */ -export type ProposalItemsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ProposalItemsHavingMaxInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingMinInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingStddevPopulationInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingStddevSampleInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingSumInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingVariancePopulationInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -export type ProposalItemsHavingVarianceSampleInput = { - blockNumber?: InputMaybe; - chainId?: InputMaybe; - nonce?: InputMaybe; -}; - -/** Methods to use when ordering `ProposalItem`. */ -export enum ProposalItemsOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - ChainIdAsc = 'CHAIN_ID_ASC', - ChainIdDesc = 'CHAIN_ID_DESC', - DataAsc = 'DATA_ASC', - DataDesc = 'DATA_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - NonceAsc = 'NONCE_ASC', - NonceDesc = 'NONCE_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposalTimelineStatusesAverageBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesAverageBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesAverageIdAsc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_ID_ASC', - ProposalTimelineStatusesAverageIdDesc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_ID_DESC', - ProposalTimelineStatusesAverageProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesAverageProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesAverageStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_STATUS_ASC', - ProposalTimelineStatusesAverageStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_STATUS_DESC', - ProposalTimelineStatusesAverageTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_TIMESTAMP_ASC', - ProposalTimelineStatusesAverageTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_TIMESTAMP_DESC', - ProposalTimelineStatusesAverageTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_TX_HASH_ASC', - ProposalTimelineStatusesAverageTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_AVERAGE_TX_HASH_DESC', - ProposalTimelineStatusesCountAsc = 'PROPOSAL_TIMELINE_STATUSES_COUNT_ASC', - ProposalTimelineStatusesCountDesc = 'PROPOSAL_TIMELINE_STATUSES_COUNT_DESC', - ProposalTimelineStatusesDistinctCountBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesDistinctCountBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesDistinctCountIdAsc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_ID_ASC', - ProposalTimelineStatusesDistinctCountIdDesc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_ID_DESC', - ProposalTimelineStatusesDistinctCountProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesDistinctCountProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesDistinctCountStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_STATUS_ASC', - ProposalTimelineStatusesDistinctCountStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_STATUS_DESC', - ProposalTimelineStatusesDistinctCountTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TIMESTAMP_ASC', - ProposalTimelineStatusesDistinctCountTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TIMESTAMP_DESC', - ProposalTimelineStatusesDistinctCountTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TX_HASH_ASC', - ProposalTimelineStatusesDistinctCountTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TX_HASH_DESC', - ProposalTimelineStatusesMaxBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_MAX_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesMaxBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_MAX_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesMaxIdAsc = 'PROPOSAL_TIMELINE_STATUSES_MAX_ID_ASC', - ProposalTimelineStatusesMaxIdDesc = 'PROPOSAL_TIMELINE_STATUSES_MAX_ID_DESC', - ProposalTimelineStatusesMaxProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_MAX_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesMaxProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_MAX_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesMaxStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_MAX_STATUS_ASC', - ProposalTimelineStatusesMaxStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_MAX_STATUS_DESC', - ProposalTimelineStatusesMaxTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_MAX_TIMESTAMP_ASC', - ProposalTimelineStatusesMaxTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_MAX_TIMESTAMP_DESC', - ProposalTimelineStatusesMaxTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_MAX_TX_HASH_ASC', - ProposalTimelineStatusesMaxTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_MAX_TX_HASH_DESC', - ProposalTimelineStatusesMinBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_MIN_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesMinBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_MIN_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesMinIdAsc = 'PROPOSAL_TIMELINE_STATUSES_MIN_ID_ASC', - ProposalTimelineStatusesMinIdDesc = 'PROPOSAL_TIMELINE_STATUSES_MIN_ID_DESC', - ProposalTimelineStatusesMinProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_MIN_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesMinProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_MIN_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesMinStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_MIN_STATUS_ASC', - ProposalTimelineStatusesMinStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_MIN_STATUS_DESC', - ProposalTimelineStatusesMinTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_MIN_TIMESTAMP_ASC', - ProposalTimelineStatusesMinTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_MIN_TIMESTAMP_DESC', - ProposalTimelineStatusesMinTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_MIN_TX_HASH_ASC', - ProposalTimelineStatusesMinTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_MIN_TX_HASH_DESC', - ProposalTimelineStatusesStddevPopulationBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesStddevPopulationBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesStddevPopulationIdAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_ID_ASC', - ProposalTimelineStatusesStddevPopulationIdDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_ID_DESC', - ProposalTimelineStatusesStddevPopulationProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesStddevPopulationProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesStddevPopulationStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_STATUS_ASC', - ProposalTimelineStatusesStddevPopulationStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_STATUS_DESC', - ProposalTimelineStatusesStddevPopulationTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TIMESTAMP_ASC', - ProposalTimelineStatusesStddevPopulationTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TIMESTAMP_DESC', - ProposalTimelineStatusesStddevPopulationTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TX_HASH_ASC', - ProposalTimelineStatusesStddevPopulationTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TX_HASH_DESC', - ProposalTimelineStatusesStddevSampleBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesStddevSampleBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesStddevSampleIdAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_ID_ASC', - ProposalTimelineStatusesStddevSampleIdDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_ID_DESC', - ProposalTimelineStatusesStddevSampleProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesStddevSampleProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesStddevSampleStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_STATUS_ASC', - ProposalTimelineStatusesStddevSampleStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_STATUS_DESC', - ProposalTimelineStatusesStddevSampleTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TIMESTAMP_ASC', - ProposalTimelineStatusesStddevSampleTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TIMESTAMP_DESC', - ProposalTimelineStatusesStddevSampleTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TX_HASH_ASC', - ProposalTimelineStatusesStddevSampleTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TX_HASH_DESC', - ProposalTimelineStatusesSumBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_SUM_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesSumBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_SUM_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesSumIdAsc = 'PROPOSAL_TIMELINE_STATUSES_SUM_ID_ASC', - ProposalTimelineStatusesSumIdDesc = 'PROPOSAL_TIMELINE_STATUSES_SUM_ID_DESC', - ProposalTimelineStatusesSumProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_SUM_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesSumProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_SUM_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesSumStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_SUM_STATUS_ASC', - ProposalTimelineStatusesSumStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_SUM_STATUS_DESC', - ProposalTimelineStatusesSumTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_SUM_TIMESTAMP_ASC', - ProposalTimelineStatusesSumTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_SUM_TIMESTAMP_DESC', - ProposalTimelineStatusesSumTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_SUM_TX_HASH_ASC', - ProposalTimelineStatusesSumTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_SUM_TX_HASH_DESC', - ProposalTimelineStatusesVariancePopulationBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesVariancePopulationBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesVariancePopulationIdAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_ID_ASC', - ProposalTimelineStatusesVariancePopulationIdDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_ID_DESC', - ProposalTimelineStatusesVariancePopulationProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesVariancePopulationProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesVariancePopulationStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_STATUS_ASC', - ProposalTimelineStatusesVariancePopulationStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_STATUS_DESC', - ProposalTimelineStatusesVariancePopulationTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TIMESTAMP_ASC', - ProposalTimelineStatusesVariancePopulationTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TIMESTAMP_DESC', - ProposalTimelineStatusesVariancePopulationTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TX_HASH_ASC', - ProposalTimelineStatusesVariancePopulationTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TX_HASH_DESC', - ProposalTimelineStatusesVarianceSampleBlockNumberAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ProposalTimelineStatusesVarianceSampleBlockNumberDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ProposalTimelineStatusesVarianceSampleIdAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_ID_ASC', - ProposalTimelineStatusesVarianceSampleIdDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_ID_DESC', - ProposalTimelineStatusesVarianceSampleProposalItemIdAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_PROPOSAL_ITEM_ID_ASC', - ProposalTimelineStatusesVarianceSampleProposalItemIdDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_PROPOSAL_ITEM_ID_DESC', - ProposalTimelineStatusesVarianceSampleStatusAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_STATUS_ASC', - ProposalTimelineStatusesVarianceSampleStatusDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_STATUS_DESC', - ProposalTimelineStatusesVarianceSampleTimestampAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TIMESTAMP_ASC', - ProposalTimelineStatusesVarianceSampleTimestampDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TIMESTAMP_DESC', - ProposalTimelineStatusesVarianceSampleTxHashAsc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TX_HASH_ASC', - ProposalTimelineStatusesVarianceSampleTxHashDesc = 'PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TX_HASH_DESC', - ProposalVotesByProposalIdAverageBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_ID_ASC', - ProposalVotesByProposalIdAverageBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_ID_DESC', - ProposalVotesByProposalIdAverageBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdAverageBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdAverageIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_ID_ASC', - ProposalVotesByProposalIdAverageIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_ID_DESC', - ProposalVotesByProposalIdAverageProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdAverageProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdAverageVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTER_ID_ASC', - ProposalVotesByProposalIdAverageVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTER_ID_DESC', - ProposalVotesByProposalIdAverageVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTE_STATUS_ASC', - ProposalVotesByProposalIdAverageVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTE_STATUS_DESC', - ProposalVotesByProposalIdCountAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_COUNT_ASC', - ProposalVotesByProposalIdCountDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_COUNT_DESC', - ProposalVotesByProposalIdDistinctCountBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_ID_ASC', - ProposalVotesByProposalIdDistinctCountBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_ID_DESC', - ProposalVotesByProposalIdDistinctCountBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdDistinctCountBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdDistinctCountIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_ASC', - ProposalVotesByProposalIdDistinctCountIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_DESC', - ProposalVotesByProposalIdDistinctCountProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdDistinctCountProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdDistinctCountVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTER_ID_ASC', - ProposalVotesByProposalIdDistinctCountVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTER_ID_DESC', - ProposalVotesByProposalIdDistinctCountVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTE_STATUS_ASC', - ProposalVotesByProposalIdDistinctCountVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTE_STATUS_DESC', - ProposalVotesByProposalIdMaxBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_ID_ASC', - ProposalVotesByProposalIdMaxBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_ID_DESC', - ProposalVotesByProposalIdMaxBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdMaxBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdMaxIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_ID_ASC', - ProposalVotesByProposalIdMaxIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_ID_DESC', - ProposalVotesByProposalIdMaxProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdMaxProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdMaxVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTER_ID_ASC', - ProposalVotesByProposalIdMaxVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTER_ID_DESC', - ProposalVotesByProposalIdMaxVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTE_STATUS_ASC', - ProposalVotesByProposalIdMaxVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTE_STATUS_DESC', - ProposalVotesByProposalIdMinBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_ID_ASC', - ProposalVotesByProposalIdMinBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_ID_DESC', - ProposalVotesByProposalIdMinBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdMinBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdMinIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_ID_ASC', - ProposalVotesByProposalIdMinIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_ID_DESC', - ProposalVotesByProposalIdMinProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdMinProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdMinVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTER_ID_ASC', - ProposalVotesByProposalIdMinVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTER_ID_DESC', - ProposalVotesByProposalIdMinVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTE_STATUS_ASC', - ProposalVotesByProposalIdMinVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTE_STATUS_DESC', - ProposalVotesByProposalIdStddevPopulationBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_ID_ASC', - ProposalVotesByProposalIdStddevPopulationBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_ID_DESC', - ProposalVotesByProposalIdStddevPopulationBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdStddevPopulationBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdStddevPopulationIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_ASC', - ProposalVotesByProposalIdStddevPopulationIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_DESC', - ProposalVotesByProposalIdStddevPopulationProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdStddevPopulationProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdStddevPopulationVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTER_ID_ASC', - ProposalVotesByProposalIdStddevPopulationVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTER_ID_DESC', - ProposalVotesByProposalIdStddevPopulationVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTE_STATUS_ASC', - ProposalVotesByProposalIdStddevPopulationVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTE_STATUS_DESC', - ProposalVotesByProposalIdStddevSampleBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_ID_ASC', - ProposalVotesByProposalIdStddevSampleBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_ID_DESC', - ProposalVotesByProposalIdStddevSampleBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdStddevSampleBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdStddevSampleIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_ASC', - ProposalVotesByProposalIdStddevSampleIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_DESC', - ProposalVotesByProposalIdStddevSampleProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdStddevSampleProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdStddevSampleVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTER_ID_ASC', - ProposalVotesByProposalIdStddevSampleVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTER_ID_DESC', - ProposalVotesByProposalIdStddevSampleVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTE_STATUS_ASC', - ProposalVotesByProposalIdStddevSampleVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTE_STATUS_DESC', - ProposalVotesByProposalIdSumBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_ID_ASC', - ProposalVotesByProposalIdSumBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_ID_DESC', - ProposalVotesByProposalIdSumBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdSumBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdSumIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_ID_ASC', - ProposalVotesByProposalIdSumIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_ID_DESC', - ProposalVotesByProposalIdSumProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdSumProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdSumVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTER_ID_ASC', - ProposalVotesByProposalIdSumVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTER_ID_DESC', - ProposalVotesByProposalIdSumVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTE_STATUS_ASC', - ProposalVotesByProposalIdSumVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTE_STATUS_DESC', - ProposalVotesByProposalIdVariancePopulationBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_ID_ASC', - ProposalVotesByProposalIdVariancePopulationBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_ID_DESC', - ProposalVotesByProposalIdVariancePopulationBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdVariancePopulationBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdVariancePopulationIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_ASC', - ProposalVotesByProposalIdVariancePopulationIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_DESC', - ProposalVotesByProposalIdVariancePopulationProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdVariancePopulationProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdVariancePopulationVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTER_ID_ASC', - ProposalVotesByProposalIdVariancePopulationVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTER_ID_DESC', - ProposalVotesByProposalIdVariancePopulationVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTE_STATUS_ASC', - ProposalVotesByProposalIdVariancePopulationVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTE_STATUS_DESC', - ProposalVotesByProposalIdVarianceSampleBlockIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_ID_ASC', - ProposalVotesByProposalIdVarianceSampleBlockIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_ID_DESC', - ProposalVotesByProposalIdVarianceSampleBlockNumberAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - ProposalVotesByProposalIdVarianceSampleBlockNumberDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - ProposalVotesByProposalIdVarianceSampleIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_ASC', - ProposalVotesByProposalIdVarianceSampleIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_DESC', - ProposalVotesByProposalIdVarianceSampleProposalIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', - ProposalVotesByProposalIdVarianceSampleProposalIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', - ProposalVotesByProposalIdVarianceSampleVoterIdAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTER_ID_ASC', - ProposalVotesByProposalIdVarianceSampleVoterIdDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTER_ID_DESC', - ProposalVotesByProposalIdVarianceSampleVoteStatusAsc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTE_STATUS_ASC', - ProposalVotesByProposalIdVarianceSampleVoteStatusDesc = 'PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTE_STATUS_DESC', - RemovedAsc = 'REMOVED_ASC', - RemovedDesc = 'REMOVED_DESC', - SignatureAsc = 'SIGNATURE_ASC', - SignatureDesc = 'SIGNATURE_DESC', - StatusAsc = 'STATUS_ASC', - StatusDesc = 'STATUS_DESC', - TypeAsc = 'TYPE_ASC', - TypeDesc = 'TYPE_DESC', - UnsignedProposalsQueueItemsByProposalIdAverageBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdAverageBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdAverageIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdAverageIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdAverageProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdAverageProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdAverageQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdAverageQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdCountAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_COUNT_ASC', - UnsignedProposalsQueueItemsByProposalIdCountDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_COUNT_DESC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdDistinctCountQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdMaxBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdMaxBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdMaxIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdMaxIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdMaxProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdMaxProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdMaxQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdMaxQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdMinBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdMinBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdMinIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdMinIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdMinProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdMinProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdMinQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdMinQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevPopulationQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdStddevSampleQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdSumBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdSumBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdSumIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdSumIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdSumProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdSumProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdSumQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdSumQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdVariancePopulationQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByProposalIdVarianceSampleQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_QUEUE_ID_DESC', -} - -export type ProposalTimelineStatus = Node & { - __typename?: 'ProposalTimelineStatus'; - blockNumber: Scalars['BigFloat']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads a single `ProposalItem` that is related to this `ProposalTimelineStatus`. */ - proposalItem?: Maybe; - proposalItemId: Scalars['String']; - status: AppEnum155D64Ff70; - timestamp: Scalars['Datetime']; - txHash?: Maybe; -}; - -export type ProposalTimelineStatusAggregates = { - __typename?: 'ProposalTimelineStatusAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ProposalTimelineStatusAverageAggregates = { - __typename?: 'ProposalTimelineStatusAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalTimelineStatusDistinctCountAggregates = { - __typename?: 'ProposalTimelineStatusDistinctCountAggregates'; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of proposalItemId across the matching connection */ - proposalItemId?: Maybe; - /** Distinct count of status across the matching connection */ - status?: Maybe; - /** Distinct count of timestamp across the matching connection */ - timestamp?: Maybe; - /** Distinct count of txHash across the matching connection */ - txHash?: Maybe; -}; - -/** A filter to be used against `ProposalTimelineStatus` object types. All fields are combined with a logical ‘and.’ */ -export type ProposalTimelineStatusFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `proposalItemId` field. */ - proposalItemId?: InputMaybe; - /** Filter by the object’s `status` field. */ - status?: InputMaybe; - /** Filter by the object’s `timestamp` field. */ - timestamp?: InputMaybe; - /** Filter by the object’s `txHash` field. */ - txHash?: InputMaybe; -}; - -export type ProposalTimelineStatusMaxAggregates = { - __typename?: 'ProposalTimelineStatusMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalTimelineStatusMinAggregates = { - __typename?: 'ProposalTimelineStatusMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalTimelineStatusStddevPopulationAggregates = { - __typename?: 'ProposalTimelineStatusStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalTimelineStatusStddevSampleAggregates = { - __typename?: 'ProposalTimelineStatusStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalTimelineStatusSumAggregates = { - __typename?: 'ProposalTimelineStatusSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigFloat']; -}; - -export type ProposalTimelineStatusVariancePopulationAggregates = { - __typename?: 'ProposalTimelineStatusVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalTimelineStatusVarianceSampleAggregates = { - __typename?: 'ProposalTimelineStatusVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `ProposalTimelineStatus` values. */ -export type ProposalTimelineStatusesConnection = { - __typename?: 'ProposalTimelineStatusesConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalTimelineStatus` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalTimelineStatus` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalTimelineStatus` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `ProposalTimelineStatus` values. */ -export type ProposalTimelineStatusesConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `ProposalTimelineStatus` edge in the connection. */ -export type ProposalTimelineStatusesEdge = { - __typename?: 'ProposalTimelineStatusesEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalTimelineStatus` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `ProposalTimelineStatus` for usage during aggregation. */ -export enum ProposalTimelineStatusesGroupBy { - BlockNumber = 'BLOCK_NUMBER', - ProposalItemId = 'PROPOSAL_ITEM_ID', - Status = 'STATUS', - Timestamp = 'TIMESTAMP', - TimestampTruncatedToDay = 'TIMESTAMP_TRUNCATED_TO_DAY', - TimestampTruncatedToHour = 'TIMESTAMP_TRUNCATED_TO_HOUR', - TxHash = 'TX_HASH', -} - -export type ProposalTimelineStatusesHavingAverageInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingDistinctCountInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -/** Conditions for `ProposalTimelineStatus` aggregates. */ -export type ProposalTimelineStatusesHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingMaxInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingMinInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingStddevPopulationInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingStddevSampleInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingSumInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingVariancePopulationInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -export type ProposalTimelineStatusesHavingVarianceSampleInput = { - blockNumber?: InputMaybe; - timestamp?: InputMaybe; -}; - -/** Methods to use when ordering `ProposalTimelineStatus`. */ -export enum ProposalTimelineStatusesOrderBy { - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposalItemIdAsc = 'PROPOSAL_ITEM_ID_ASC', - ProposalItemIdDesc = 'PROPOSAL_ITEM_ID_DESC', - StatusAsc = 'STATUS_ASC', - StatusDesc = 'STATUS_DESC', - TimestampAsc = 'TIMESTAMP_ASC', - TimestampDesc = 'TIMESTAMP_DESC', - TxHashAsc = 'TX_HASH_ASC', - TxHashDesc = 'TX_HASH_DESC', -} - -export type ProposalVote = Node & { - __typename?: 'ProposalVote'; - /** Reads a single `Block` that is related to this `ProposalVote`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['BigFloat']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads a single `ProposalItem` that is related to this `ProposalVote`. */ - proposal?: Maybe; - proposalId: Scalars['String']; - voteStatus: AppEnumFe385C7221; - /** Reads a single `Proposer` that is related to this `ProposalVote`. */ - voter?: Maybe; - voterId: Scalars['String']; -}; - -export type ProposalVoteAggregates = { - __typename?: 'ProposalVoteAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ProposalVoteAverageAggregates = { - __typename?: 'ProposalVoteAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalVoteDistinctCountAggregates = { - __typename?: 'ProposalVoteDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of proposalId across the matching connection */ - proposalId?: Maybe; - /** Distinct count of voteStatus across the matching connection */ - voteStatus?: Maybe; - /** Distinct count of voterId across the matching connection */ - voterId?: Maybe; -}; - -/** A filter to be used against `ProposalVote` object types. All fields are combined with a logical ‘and.’ */ -export type ProposalVoteFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `proposalId` field. */ - proposalId?: InputMaybe; - /** Filter by the object’s `voteStatus` field. */ - voteStatus?: InputMaybe; - /** Filter by the object’s `voterId` field. */ - voterId?: InputMaybe; -}; - -export type ProposalVoteMaxAggregates = { - __typename?: 'ProposalVoteMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalVoteMinAggregates = { - __typename?: 'ProposalVoteMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalVoteStddevPopulationAggregates = { - __typename?: 'ProposalVoteStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalVoteStddevSampleAggregates = { - __typename?: 'ProposalVoteStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalVoteSumAggregates = { - __typename?: 'ProposalVoteSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigFloat']; -}; - -export type ProposalVoteVariancePopulationAggregates = { - __typename?: 'ProposalVoteVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type ProposalVoteVarianceSampleAggregates = { - __typename?: 'ProposalVoteVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `ProposalVote` values. */ -export type ProposalVotesConnection = { - __typename?: 'ProposalVotesConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalVote` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalVote` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalVote` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `ProposalVote` values. */ -export type ProposalVotesConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `ProposalVote` edge in the connection. */ -export type ProposalVotesEdge = { - __typename?: 'ProposalVotesEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalVote` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `ProposalVote` for usage during aggregation. */ -export enum ProposalVotesGroupBy { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - ProposalId = 'PROPOSAL_ID', - VoterId = 'VOTER_ID', - VoteStatus = 'VOTE_STATUS', -} - -export type ProposalVotesHavingAverageInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingDistinctCountInput = { - blockNumber?: InputMaybe; -}; - -/** Conditions for `ProposalVote` aggregates. */ -export type ProposalVotesHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ProposalVotesHavingMaxInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingMinInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingStddevPopulationInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingStddevSampleInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingSumInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingVariancePopulationInput = { - blockNumber?: InputMaybe; -}; - -export type ProposalVotesHavingVarianceSampleInput = { - blockNumber?: InputMaybe; -}; - -/** Methods to use when ordering `ProposalVote`. */ -export enum ProposalVotesOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposalIdAsc = 'PROPOSAL_ID_ASC', - ProposalIdDesc = 'PROPOSAL_ID_DESC', - VoterIdAsc = 'VOTER_ID_ASC', - VoterIdDesc = 'VOTER_ID_DESC', - VoteStatusAsc = 'VOTE_STATUS_ASC', - VoteStatusDesc = 'VOTE_STATUS_DESC', -} - -export type Proposer = Node & { - __typename?: 'Proposer'; - /** Reads a single `Account` that is related to this `Proposer`. */ - account?: Maybe; - accountId: Scalars['String']; - /** Reads and enables pagination through a set of `Block`. */ - blocksByProposalVoteVoterIdAndBlockId: ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads and enables pagination through a set of `ProposalItem`. */ - proposalItemsByProposalVoteVoterIdAndProposalId: ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection; - /** Reads and enables pagination through a set of `SessionProposer`. */ - sessionProposers: SessionProposersConnection; - /** Reads and enables pagination through a set of `Session`. */ - sessionsBySessionProposerProposerIdAndSessionId: ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection; - /** Reads and enables pagination through a set of `ProposalVote`. */ - votes: ProposalVotesConnection; -}; - -export type ProposerBlocksByProposalVoteVoterIdAndBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposerSessionProposersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposerSessionsBySessionProposerProposerIdAndSessionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposerVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ProposerAggregates = { - __typename?: 'ProposerAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -/** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection = - { - __typename?: 'ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `ProposalVote`, and the 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']; - }; - -/** A connection to a list of `Block` values, with data from `ProposalVote`. */ -export type ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdge = { - __typename?: 'ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdge'; - /** 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 `ProposalVote`. */ - proposalVotes: ProposalVotesConnection; -}; - -/** A `Block` edge in the connection, with data from `ProposalVote`. */ -export type ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdgeProposalVotesArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ProposerDistinctCountAggregates = { - __typename?: 'ProposerDistinctCountAggregates'; - /** Distinct count of accountId across the matching connection */ - accountId?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; -}; - -/** A filter to be used against `Proposer` object types. All fields are combined with a logical ‘and.’ */ -export type ProposerFilter = { - /** Filter by the object’s `accountId` field. */ - accountId?: InputMaybe; - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; -}; - -/** A connection to a list of `ProposalItem` values, with data from `ProposalVote`. */ -export type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection = - { - __typename?: 'ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalItem`, info from the `ProposalVote`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalItem` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalItem` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `ProposalItem` values, with data from `ProposalVote`. */ -export type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `ProposalItem` edge in the connection, with data from `ProposalVote`. */ -export type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdge = - { - __typename?: 'ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalItem` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `ProposalVote`. */ - proposalVotesByProposalId: ProposalVotesConnection; - }; - -/** A `ProposalItem` edge in the connection, with data from `ProposalVote`. */ -export type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdgeProposalVotesByProposalIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `Session` values, with data from `SessionProposer`. */ -export type ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection = - { - __typename?: 'ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Session`, info from the `SessionProposer`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Session` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Session` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Session` values, with data from `SessionProposer`. */ -export type ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Session` edge in the connection, with data from `SessionProposer`. */ -export type ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdge = - { - __typename?: 'ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Session` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `SessionProposer`. */ - sessionProposers: SessionProposersConnection; - }; - -/** A `Session` edge in the connection, with data from `SessionProposer`. */ -export type ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdgeSessionProposersArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type ProposerThreshold = Node & { - __typename?: 'ProposerThreshold'; - /** Reads a single `Block` that is related to this `ProposerThreshold`. */ - block?: Maybe; - blockId: Scalars['String']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - value?: Maybe; -}; - -export type ProposerThresholdAggregates = { - __typename?: 'ProposerThresholdAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ProposerThresholdAverageAggregates = { - __typename?: 'ProposerThresholdAverageAggregates'; - /** Mean average of value across the matching connection */ - value?: Maybe; -}; - -export type ProposerThresholdDistinctCountAggregates = { - __typename?: 'ProposerThresholdDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of value across the matching connection */ - value?: Maybe; -}; - -/** A filter to be used against `ProposerThreshold` object types. All fields are combined with a logical ‘and.’ */ -export type ProposerThresholdFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `value` field. */ - value?: InputMaybe; -}; - -export type ProposerThresholdMaxAggregates = { - __typename?: 'ProposerThresholdMaxAggregates'; - /** Maximum of value across the matching connection */ - value?: Maybe; -}; - -export type ProposerThresholdMinAggregates = { - __typename?: 'ProposerThresholdMinAggregates'; - /** Minimum of value across the matching connection */ - value?: Maybe; -}; - -export type ProposerThresholdStddevPopulationAggregates = { - __typename?: 'ProposerThresholdStddevPopulationAggregates'; - /** Population standard deviation of value across the matching connection */ - value?: Maybe; -}; - -export type ProposerThresholdStddevSampleAggregates = { - __typename?: 'ProposerThresholdStddevSampleAggregates'; - /** Sample standard deviation of value across the matching connection */ - value?: Maybe; -}; - -export type ProposerThresholdSumAggregates = { - __typename?: 'ProposerThresholdSumAggregates'; - /** Sum of value across the matching connection */ - value: Scalars['BigInt']; -}; - -export type ProposerThresholdVariancePopulationAggregates = { - __typename?: 'ProposerThresholdVariancePopulationAggregates'; - /** Population variance of value across the matching connection */ - value?: Maybe; -}; - -export type ProposerThresholdVarianceSampleAggregates = { - __typename?: 'ProposerThresholdVarianceSampleAggregates'; - /** Sample variance of value across the matching connection */ - value?: Maybe; -}; - -/** A connection to a list of `ProposerThreshold` values. */ -export type ProposerThresholdsConnection = { - __typename?: 'ProposerThresholdsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposerThreshold` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposerThreshold` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposerThreshold` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `ProposerThreshold` values. */ -export type ProposerThresholdsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `ProposerThreshold` edge in the connection. */ -export type ProposerThresholdsEdge = { - __typename?: 'ProposerThresholdsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposerThreshold` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `ProposerThreshold` for usage during aggregation. */ -export enum ProposerThresholdsGroupBy { - BlockId = 'BLOCK_ID', - Value = 'VALUE', -} - -export type ProposerThresholdsHavingAverageInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingDistinctCountInput = { - value?: InputMaybe; -}; - -/** Conditions for `ProposerThreshold` aggregates. */ -export type ProposerThresholdsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ProposerThresholdsHavingMaxInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingMinInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingStddevPopulationInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingStddevSampleInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingSumInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingVariancePopulationInput = { - value?: InputMaybe; -}; - -export type ProposerThresholdsHavingVarianceSampleInput = { - value?: InputMaybe; -}; - -/** Methods to use when ordering `ProposerThreshold`. */ -export enum ProposerThresholdsOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ValueAsc = 'VALUE_ASC', - ValueDesc = 'VALUE_DESC', -} - -/** A connection to a list of `Proposer` values. */ -export type ProposersConnection = { - __typename?: 'ProposersConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Proposer` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Proposer` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Proposer` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Proposer` values. */ -export type ProposersConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Proposer` edge in the connection. */ -export type ProposersEdge = { - __typename?: 'ProposersEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Proposer` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Proposer` for usage during aggregation. */ -export enum ProposersGroupBy { - AccountId = 'ACCOUNT_ID', -} - -/** Conditions for `Proposer` aggregates. */ -export type ProposersHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `Proposer`. */ -export enum ProposersOrderBy { - AccountIdAsc = 'ACCOUNT_ID_ASC', - AccountIdDesc = 'ACCOUNT_ID_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SessionProposersAverageIdAsc = 'SESSION_PROPOSERS_AVERAGE_ID_ASC', - SessionProposersAverageIdDesc = 'SESSION_PROPOSERS_AVERAGE_ID_DESC', - SessionProposersAverageProposerIdAsc = 'SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_ASC', - SessionProposersAverageProposerIdDesc = 'SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_DESC', - SessionProposersAverageSessionIdAsc = 'SESSION_PROPOSERS_AVERAGE_SESSION_ID_ASC', - SessionProposersAverageSessionIdDesc = 'SESSION_PROPOSERS_AVERAGE_SESSION_ID_DESC', - SessionProposersCountAsc = 'SESSION_PROPOSERS_COUNT_ASC', - SessionProposersCountDesc = 'SESSION_PROPOSERS_COUNT_DESC', - SessionProposersDistinctCountIdAsc = 'SESSION_PROPOSERS_DISTINCT_COUNT_ID_ASC', - SessionProposersDistinctCountIdDesc = 'SESSION_PROPOSERS_DISTINCT_COUNT_ID_DESC', - SessionProposersDistinctCountProposerIdAsc = 'SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_ASC', - SessionProposersDistinctCountProposerIdDesc = 'SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_DESC', - SessionProposersDistinctCountSessionIdAsc = 'SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_ASC', - SessionProposersDistinctCountSessionIdDesc = 'SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_DESC', - SessionProposersMaxIdAsc = 'SESSION_PROPOSERS_MAX_ID_ASC', - SessionProposersMaxIdDesc = 'SESSION_PROPOSERS_MAX_ID_DESC', - SessionProposersMaxProposerIdAsc = 'SESSION_PROPOSERS_MAX_PROPOSER_ID_ASC', - SessionProposersMaxProposerIdDesc = 'SESSION_PROPOSERS_MAX_PROPOSER_ID_DESC', - SessionProposersMaxSessionIdAsc = 'SESSION_PROPOSERS_MAX_SESSION_ID_ASC', - SessionProposersMaxSessionIdDesc = 'SESSION_PROPOSERS_MAX_SESSION_ID_DESC', - SessionProposersMinIdAsc = 'SESSION_PROPOSERS_MIN_ID_ASC', - SessionProposersMinIdDesc = 'SESSION_PROPOSERS_MIN_ID_DESC', - SessionProposersMinProposerIdAsc = 'SESSION_PROPOSERS_MIN_PROPOSER_ID_ASC', - SessionProposersMinProposerIdDesc = 'SESSION_PROPOSERS_MIN_PROPOSER_ID_DESC', - SessionProposersMinSessionIdAsc = 'SESSION_PROPOSERS_MIN_SESSION_ID_ASC', - SessionProposersMinSessionIdDesc = 'SESSION_PROPOSERS_MIN_SESSION_ID_DESC', - SessionProposersStddevPopulationIdAsc = 'SESSION_PROPOSERS_STDDEV_POPULATION_ID_ASC', - SessionProposersStddevPopulationIdDesc = 'SESSION_PROPOSERS_STDDEV_POPULATION_ID_DESC', - SessionProposersStddevPopulationProposerIdAsc = 'SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_ASC', - SessionProposersStddevPopulationProposerIdDesc = 'SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_DESC', - SessionProposersStddevPopulationSessionIdAsc = 'SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_ASC', - SessionProposersStddevPopulationSessionIdDesc = 'SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_DESC', - SessionProposersStddevSampleIdAsc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_ID_ASC', - SessionProposersStddevSampleIdDesc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_ID_DESC', - SessionProposersStddevSampleProposerIdAsc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_ASC', - SessionProposersStddevSampleProposerIdDesc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_DESC', - SessionProposersStddevSampleSessionIdAsc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_ASC', - SessionProposersStddevSampleSessionIdDesc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_DESC', - SessionProposersSumIdAsc = 'SESSION_PROPOSERS_SUM_ID_ASC', - SessionProposersSumIdDesc = 'SESSION_PROPOSERS_SUM_ID_DESC', - SessionProposersSumProposerIdAsc = 'SESSION_PROPOSERS_SUM_PROPOSER_ID_ASC', - SessionProposersSumProposerIdDesc = 'SESSION_PROPOSERS_SUM_PROPOSER_ID_DESC', - SessionProposersSumSessionIdAsc = 'SESSION_PROPOSERS_SUM_SESSION_ID_ASC', - SessionProposersSumSessionIdDesc = 'SESSION_PROPOSERS_SUM_SESSION_ID_DESC', - SessionProposersVariancePopulationIdAsc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_ID_ASC', - SessionProposersVariancePopulationIdDesc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_ID_DESC', - SessionProposersVariancePopulationProposerIdAsc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_ASC', - SessionProposersVariancePopulationProposerIdDesc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_DESC', - SessionProposersVariancePopulationSessionIdAsc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_ASC', - SessionProposersVariancePopulationSessionIdDesc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_DESC', - SessionProposersVarianceSampleIdAsc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_ASC', - SessionProposersVarianceSampleIdDesc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_DESC', - SessionProposersVarianceSampleProposerIdAsc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_ASC', - SessionProposersVarianceSampleProposerIdDesc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_DESC', - SessionProposersVarianceSampleSessionIdAsc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_ASC', - SessionProposersVarianceSampleSessionIdDesc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_DESC', - VotesAverageBlockIdAsc = 'VOTES_AVERAGE_BLOCK_ID_ASC', - VotesAverageBlockIdDesc = 'VOTES_AVERAGE_BLOCK_ID_DESC', - VotesAverageBlockNumberAsc = 'VOTES_AVERAGE_BLOCK_NUMBER_ASC', - VotesAverageBlockNumberDesc = 'VOTES_AVERAGE_BLOCK_NUMBER_DESC', - VotesAverageIdAsc = 'VOTES_AVERAGE_ID_ASC', - VotesAverageIdDesc = 'VOTES_AVERAGE_ID_DESC', - VotesAverageProposalIdAsc = 'VOTES_AVERAGE_PROPOSAL_ID_ASC', - VotesAverageProposalIdDesc = 'VOTES_AVERAGE_PROPOSAL_ID_DESC', - VotesAverageVoterIdAsc = 'VOTES_AVERAGE_VOTER_ID_ASC', - VotesAverageVoterIdDesc = 'VOTES_AVERAGE_VOTER_ID_DESC', - VotesAverageVoteStatusAsc = 'VOTES_AVERAGE_VOTE_STATUS_ASC', - VotesAverageVoteStatusDesc = 'VOTES_AVERAGE_VOTE_STATUS_DESC', - VotesCountAsc = 'VOTES_COUNT_ASC', - VotesCountDesc = 'VOTES_COUNT_DESC', - VotesDistinctCountBlockIdAsc = 'VOTES_DISTINCT_COUNT_BLOCK_ID_ASC', - VotesDistinctCountBlockIdDesc = 'VOTES_DISTINCT_COUNT_BLOCK_ID_DESC', - VotesDistinctCountBlockNumberAsc = 'VOTES_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - VotesDistinctCountBlockNumberDesc = 'VOTES_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - VotesDistinctCountIdAsc = 'VOTES_DISTINCT_COUNT_ID_ASC', - VotesDistinctCountIdDesc = 'VOTES_DISTINCT_COUNT_ID_DESC', - VotesDistinctCountProposalIdAsc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC', - VotesDistinctCountProposalIdDesc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC', - VotesDistinctCountVoterIdAsc = 'VOTES_DISTINCT_COUNT_VOTER_ID_ASC', - VotesDistinctCountVoterIdDesc = 'VOTES_DISTINCT_COUNT_VOTER_ID_DESC', - VotesDistinctCountVoteStatusAsc = 'VOTES_DISTINCT_COUNT_VOTE_STATUS_ASC', - VotesDistinctCountVoteStatusDesc = 'VOTES_DISTINCT_COUNT_VOTE_STATUS_DESC', - VotesMaxBlockIdAsc = 'VOTES_MAX_BLOCK_ID_ASC', - VotesMaxBlockIdDesc = 'VOTES_MAX_BLOCK_ID_DESC', - VotesMaxBlockNumberAsc = 'VOTES_MAX_BLOCK_NUMBER_ASC', - VotesMaxBlockNumberDesc = 'VOTES_MAX_BLOCK_NUMBER_DESC', - VotesMaxIdAsc = 'VOTES_MAX_ID_ASC', - VotesMaxIdDesc = 'VOTES_MAX_ID_DESC', - VotesMaxProposalIdAsc = 'VOTES_MAX_PROPOSAL_ID_ASC', - VotesMaxProposalIdDesc = 'VOTES_MAX_PROPOSAL_ID_DESC', - VotesMaxVoterIdAsc = 'VOTES_MAX_VOTER_ID_ASC', - VotesMaxVoterIdDesc = 'VOTES_MAX_VOTER_ID_DESC', - VotesMaxVoteStatusAsc = 'VOTES_MAX_VOTE_STATUS_ASC', - VotesMaxVoteStatusDesc = 'VOTES_MAX_VOTE_STATUS_DESC', - VotesMinBlockIdAsc = 'VOTES_MIN_BLOCK_ID_ASC', - VotesMinBlockIdDesc = 'VOTES_MIN_BLOCK_ID_DESC', - VotesMinBlockNumberAsc = 'VOTES_MIN_BLOCK_NUMBER_ASC', - VotesMinBlockNumberDesc = 'VOTES_MIN_BLOCK_NUMBER_DESC', - VotesMinIdAsc = 'VOTES_MIN_ID_ASC', - VotesMinIdDesc = 'VOTES_MIN_ID_DESC', - VotesMinProposalIdAsc = 'VOTES_MIN_PROPOSAL_ID_ASC', - VotesMinProposalIdDesc = 'VOTES_MIN_PROPOSAL_ID_DESC', - VotesMinVoterIdAsc = 'VOTES_MIN_VOTER_ID_ASC', - VotesMinVoterIdDesc = 'VOTES_MIN_VOTER_ID_DESC', - VotesMinVoteStatusAsc = 'VOTES_MIN_VOTE_STATUS_ASC', - VotesMinVoteStatusDesc = 'VOTES_MIN_VOTE_STATUS_DESC', - VotesStddevPopulationBlockIdAsc = 'VOTES_STDDEV_POPULATION_BLOCK_ID_ASC', - VotesStddevPopulationBlockIdDesc = 'VOTES_STDDEV_POPULATION_BLOCK_ID_DESC', - VotesStddevPopulationBlockNumberAsc = 'VOTES_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - VotesStddevPopulationBlockNumberDesc = 'VOTES_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - VotesStddevPopulationIdAsc = 'VOTES_STDDEV_POPULATION_ID_ASC', - VotesStddevPopulationIdDesc = 'VOTES_STDDEV_POPULATION_ID_DESC', - VotesStddevPopulationProposalIdAsc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC', - VotesStddevPopulationProposalIdDesc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC', - VotesStddevPopulationVoterIdAsc = 'VOTES_STDDEV_POPULATION_VOTER_ID_ASC', - VotesStddevPopulationVoterIdDesc = 'VOTES_STDDEV_POPULATION_VOTER_ID_DESC', - VotesStddevPopulationVoteStatusAsc = 'VOTES_STDDEV_POPULATION_VOTE_STATUS_ASC', - VotesStddevPopulationVoteStatusDesc = 'VOTES_STDDEV_POPULATION_VOTE_STATUS_DESC', - VotesStddevSampleBlockIdAsc = 'VOTES_STDDEV_SAMPLE_BLOCK_ID_ASC', - VotesStddevSampleBlockIdDesc = 'VOTES_STDDEV_SAMPLE_BLOCK_ID_DESC', - VotesStddevSampleBlockNumberAsc = 'VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - VotesStddevSampleBlockNumberDesc = 'VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - VotesStddevSampleIdAsc = 'VOTES_STDDEV_SAMPLE_ID_ASC', - VotesStddevSampleIdDesc = 'VOTES_STDDEV_SAMPLE_ID_DESC', - VotesStddevSampleProposalIdAsc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC', - VotesStddevSampleProposalIdDesc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC', - VotesStddevSampleVoterIdAsc = 'VOTES_STDDEV_SAMPLE_VOTER_ID_ASC', - VotesStddevSampleVoterIdDesc = 'VOTES_STDDEV_SAMPLE_VOTER_ID_DESC', - VotesStddevSampleVoteStatusAsc = 'VOTES_STDDEV_SAMPLE_VOTE_STATUS_ASC', - VotesStddevSampleVoteStatusDesc = 'VOTES_STDDEV_SAMPLE_VOTE_STATUS_DESC', - VotesSumBlockIdAsc = 'VOTES_SUM_BLOCK_ID_ASC', - VotesSumBlockIdDesc = 'VOTES_SUM_BLOCK_ID_DESC', - VotesSumBlockNumberAsc = 'VOTES_SUM_BLOCK_NUMBER_ASC', - VotesSumBlockNumberDesc = 'VOTES_SUM_BLOCK_NUMBER_DESC', - VotesSumIdAsc = 'VOTES_SUM_ID_ASC', - VotesSumIdDesc = 'VOTES_SUM_ID_DESC', - VotesSumProposalIdAsc = 'VOTES_SUM_PROPOSAL_ID_ASC', - VotesSumProposalIdDesc = 'VOTES_SUM_PROPOSAL_ID_DESC', - VotesSumVoterIdAsc = 'VOTES_SUM_VOTER_ID_ASC', - VotesSumVoterIdDesc = 'VOTES_SUM_VOTER_ID_DESC', - VotesSumVoteStatusAsc = 'VOTES_SUM_VOTE_STATUS_ASC', - VotesSumVoteStatusDesc = 'VOTES_SUM_VOTE_STATUS_DESC', - VotesVariancePopulationBlockIdAsc = 'VOTES_VARIANCE_POPULATION_BLOCK_ID_ASC', - VotesVariancePopulationBlockIdDesc = 'VOTES_VARIANCE_POPULATION_BLOCK_ID_DESC', - VotesVariancePopulationBlockNumberAsc = 'VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - VotesVariancePopulationBlockNumberDesc = 'VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - VotesVariancePopulationIdAsc = 'VOTES_VARIANCE_POPULATION_ID_ASC', - VotesVariancePopulationIdDesc = 'VOTES_VARIANCE_POPULATION_ID_DESC', - VotesVariancePopulationProposalIdAsc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC', - VotesVariancePopulationProposalIdDesc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC', - VotesVariancePopulationVoterIdAsc = 'VOTES_VARIANCE_POPULATION_VOTER_ID_ASC', - VotesVariancePopulationVoterIdDesc = 'VOTES_VARIANCE_POPULATION_VOTER_ID_DESC', - VotesVariancePopulationVoteStatusAsc = 'VOTES_VARIANCE_POPULATION_VOTE_STATUS_ASC', - VotesVariancePopulationVoteStatusDesc = 'VOTES_VARIANCE_POPULATION_VOTE_STATUS_DESC', - VotesVarianceSampleBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_BLOCK_ID_ASC', - VotesVarianceSampleBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_BLOCK_ID_DESC', - VotesVarianceSampleBlockNumberAsc = 'VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - VotesVarianceSampleBlockNumberDesc = 'VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - VotesVarianceSampleIdAsc = 'VOTES_VARIANCE_SAMPLE_ID_ASC', - VotesVarianceSampleIdDesc = 'VOTES_VARIANCE_SAMPLE_ID_DESC', - VotesVarianceSampleProposalIdAsc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', - VotesVarianceSampleProposalIdDesc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', - VotesVarianceSampleVoterIdAsc = 'VOTES_VARIANCE_SAMPLE_VOTER_ID_ASC', - VotesVarianceSampleVoterIdDesc = 'VOTES_VARIANCE_SAMPLE_VOTER_ID_DESC', - VotesVarianceSampleVoteStatusAsc = 'VOTES_VARIANCE_SAMPLE_VOTE_STATUS_ASC', - VotesVarianceSampleVoteStatusDesc = 'VOTES_VARIANCE_SAMPLE_VOTE_STATUS_DESC', -} - -export type PublicKey = Node & { - __typename?: 'PublicKey'; - /** Reads a single `Block` that is related to this `PublicKey`. */ - block?: Maybe; - blockId: Scalars['String']; - /** Reads and enables pagination through a set of `Block`. */ - blocksBySessionPublicKeyIdAndBlockId: PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection; - compressed?: Maybe; - history: Scalars['JSON']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads and enables pagination through a set of `Session`. */ - sessions: SessionsConnection; - uncompressed?: Maybe; -}; - -export type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type PublicKeySessionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type PublicKeyAggregates = { - __typename?: 'PublicKeyAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -/** A connection to a list of `Block` values, with data from `Session`. */ -export type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection = - { - __typename?: 'PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Block`, info from the `Session`, and the 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']; - }; - -/** A connection to a list of `Block` values, with data from `Session`. */ -export type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Block` edge in the connection, with data from `Session`. */ -export type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdge = { - __typename?: 'PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdge'; - /** 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 `Session`. */ - sessions: SessionsConnection; -}; - -/** A `Block` edge in the connection, with data from `Session`. */ -export type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdgeSessionsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type PublicKeyDistinctCountAggregates = { - __typename?: 'PublicKeyDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of compressed across the matching connection */ - compressed?: Maybe; - /** Distinct count of history across the matching connection */ - history?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of uncompressed across the matching connection */ - uncompressed?: Maybe; -}; - -/** A filter to be used against `PublicKey` object types. All fields are combined with a logical ‘and.’ */ -export type PublicKeyFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `compressed` field. */ - compressed?: InputMaybe; - /** Filter by the object’s `history` field. */ - history?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `uncompressed` field. */ - uncompressed?: InputMaybe; -}; - -/** A connection to a list of `PublicKey` values. */ -export type PublicKeysConnection = { - __typename?: 'PublicKeysConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `PublicKey` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `PublicKey` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `PublicKey` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `PublicKey` values. */ -export type PublicKeysConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `PublicKey` edge in the connection. */ -export type PublicKeysEdge = { - __typename?: 'PublicKeysEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `PublicKey` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `PublicKey` for usage during aggregation. */ -export enum PublicKeysGroupBy { - BlockId = 'BLOCK_ID', - Compressed = 'COMPRESSED', - History = 'HISTORY', -} - -/** Conditions for `PublicKey` aggregates. */ -export type PublicKeysHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `PublicKey`. */ -export enum PublicKeysOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - CompressedAsc = 'COMPRESSED_ASC', - CompressedDesc = 'COMPRESSED_DESC', - HistoryAsc = 'HISTORY_ASC', - HistoryDesc = 'HISTORY_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SessionsAverageBlockIdAsc = 'SESSIONS_AVERAGE_BLOCK_ID_ASC', - SessionsAverageBlockIdDesc = 'SESSIONS_AVERAGE_BLOCK_ID_DESC', - SessionsAverageBlockNumberAsc = 'SESSIONS_AVERAGE_BLOCK_NUMBER_ASC', - SessionsAverageBlockNumberDesc = 'SESSIONS_AVERAGE_BLOCK_NUMBER_DESC', - SessionsAverageIdAsc = 'SESSIONS_AVERAGE_ID_ASC', - SessionsAverageIdDesc = 'SESSIONS_AVERAGE_ID_DESC', - SessionsAveragePublicKeyIdAsc = 'SESSIONS_AVERAGE_PUBLIC_KEY_ID_ASC', - SessionsAveragePublicKeyIdDesc = 'SESSIONS_AVERAGE_PUBLIC_KEY_ID_DESC', - SessionsCountAsc = 'SESSIONS_COUNT_ASC', - SessionsCountDesc = 'SESSIONS_COUNT_DESC', - SessionsDistinctCountBlockIdAsc = 'SESSIONS_DISTINCT_COUNT_BLOCK_ID_ASC', - SessionsDistinctCountBlockIdDesc = 'SESSIONS_DISTINCT_COUNT_BLOCK_ID_DESC', - SessionsDistinctCountBlockNumberAsc = 'SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - SessionsDistinctCountBlockNumberDesc = 'SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - SessionsDistinctCountIdAsc = 'SESSIONS_DISTINCT_COUNT_ID_ASC', - SessionsDistinctCountIdDesc = 'SESSIONS_DISTINCT_COUNT_ID_DESC', - SessionsDistinctCountPublicKeyIdAsc = 'SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_ASC', - SessionsDistinctCountPublicKeyIdDesc = 'SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_DESC', - SessionsMaxBlockIdAsc = 'SESSIONS_MAX_BLOCK_ID_ASC', - SessionsMaxBlockIdDesc = 'SESSIONS_MAX_BLOCK_ID_DESC', - SessionsMaxBlockNumberAsc = 'SESSIONS_MAX_BLOCK_NUMBER_ASC', - SessionsMaxBlockNumberDesc = 'SESSIONS_MAX_BLOCK_NUMBER_DESC', - SessionsMaxIdAsc = 'SESSIONS_MAX_ID_ASC', - SessionsMaxIdDesc = 'SESSIONS_MAX_ID_DESC', - SessionsMaxPublicKeyIdAsc = 'SESSIONS_MAX_PUBLIC_KEY_ID_ASC', - SessionsMaxPublicKeyIdDesc = 'SESSIONS_MAX_PUBLIC_KEY_ID_DESC', - SessionsMinBlockIdAsc = 'SESSIONS_MIN_BLOCK_ID_ASC', - SessionsMinBlockIdDesc = 'SESSIONS_MIN_BLOCK_ID_DESC', - SessionsMinBlockNumberAsc = 'SESSIONS_MIN_BLOCK_NUMBER_ASC', - SessionsMinBlockNumberDesc = 'SESSIONS_MIN_BLOCK_NUMBER_DESC', - SessionsMinIdAsc = 'SESSIONS_MIN_ID_ASC', - SessionsMinIdDesc = 'SESSIONS_MIN_ID_DESC', - SessionsMinPublicKeyIdAsc = 'SESSIONS_MIN_PUBLIC_KEY_ID_ASC', - SessionsMinPublicKeyIdDesc = 'SESSIONS_MIN_PUBLIC_KEY_ID_DESC', - SessionsStddevPopulationBlockIdAsc = 'SESSIONS_STDDEV_POPULATION_BLOCK_ID_ASC', - SessionsStddevPopulationBlockIdDesc = 'SESSIONS_STDDEV_POPULATION_BLOCK_ID_DESC', - SessionsStddevPopulationBlockNumberAsc = 'SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - SessionsStddevPopulationBlockNumberDesc = 'SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - SessionsStddevPopulationIdAsc = 'SESSIONS_STDDEV_POPULATION_ID_ASC', - SessionsStddevPopulationIdDesc = 'SESSIONS_STDDEV_POPULATION_ID_DESC', - SessionsStddevPopulationPublicKeyIdAsc = 'SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_ASC', - SessionsStddevPopulationPublicKeyIdDesc = 'SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_DESC', - SessionsStddevSampleBlockIdAsc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_ID_ASC', - SessionsStddevSampleBlockIdDesc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_ID_DESC', - SessionsStddevSampleBlockNumberAsc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - SessionsStddevSampleBlockNumberDesc = 'SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - SessionsStddevSampleIdAsc = 'SESSIONS_STDDEV_SAMPLE_ID_ASC', - SessionsStddevSampleIdDesc = 'SESSIONS_STDDEV_SAMPLE_ID_DESC', - SessionsStddevSamplePublicKeyIdAsc = 'SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_ASC', - SessionsStddevSamplePublicKeyIdDesc = 'SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_DESC', - SessionsSumBlockIdAsc = 'SESSIONS_SUM_BLOCK_ID_ASC', - SessionsSumBlockIdDesc = 'SESSIONS_SUM_BLOCK_ID_DESC', - SessionsSumBlockNumberAsc = 'SESSIONS_SUM_BLOCK_NUMBER_ASC', - SessionsSumBlockNumberDesc = 'SESSIONS_SUM_BLOCK_NUMBER_DESC', - SessionsSumIdAsc = 'SESSIONS_SUM_ID_ASC', - SessionsSumIdDesc = 'SESSIONS_SUM_ID_DESC', - SessionsSumPublicKeyIdAsc = 'SESSIONS_SUM_PUBLIC_KEY_ID_ASC', - SessionsSumPublicKeyIdDesc = 'SESSIONS_SUM_PUBLIC_KEY_ID_DESC', - SessionsVariancePopulationBlockIdAsc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_ID_ASC', - SessionsVariancePopulationBlockIdDesc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_ID_DESC', - SessionsVariancePopulationBlockNumberAsc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - SessionsVariancePopulationBlockNumberDesc = 'SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - SessionsVariancePopulationIdAsc = 'SESSIONS_VARIANCE_POPULATION_ID_ASC', - SessionsVariancePopulationIdDesc = 'SESSIONS_VARIANCE_POPULATION_ID_DESC', - SessionsVariancePopulationPublicKeyIdAsc = 'SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_ASC', - SessionsVariancePopulationPublicKeyIdDesc = 'SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_DESC', - SessionsVarianceSampleBlockIdAsc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_ASC', - SessionsVarianceSampleBlockIdDesc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_DESC', - SessionsVarianceSampleBlockNumberAsc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - SessionsVarianceSampleBlockNumberDesc = 'SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - SessionsVarianceSampleIdAsc = 'SESSIONS_VARIANCE_SAMPLE_ID_ASC', - SessionsVarianceSampleIdDesc = 'SESSIONS_VARIANCE_SAMPLE_ID_DESC', - SessionsVarianceSamplePublicKeyIdAsc = 'SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_ASC', - SessionsVarianceSamplePublicKeyIdDesc = 'SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_DESC', - UncompressedAsc = 'UNCOMPRESSED_ASC', - UncompressedDesc = 'UNCOMPRESSED_DESC', -} - -/** The root query type which gives access points into the data universe. */ -export type Query = Node & { - __typename?: 'Query'; - _metadata?: Maybe<_Metadata>; - account?: Maybe; - /** Reads a single `Account` using its globally unique `ID`. */ - accountByNodeId?: Maybe; - /** Reads and enables pagination through a set of `Account`. */ - accounts?: Maybe; - /** Reads and enables pagination through a set of `Authority`. */ - authorities?: Maybe; - authority?: Maybe; - /** Reads a single `Authority` using its globally unique `ID`. */ - authorityByNodeId?: Maybe; - block?: Maybe; - /** Reads a single `Block` using its globally unique `ID`. */ - blockByNodeId?: Maybe; - /** Reads and enables pagination through a set of `Block`. */ - blocks?: Maybe; - countryCode?: Maybe; - /** Reads a single `CountryCode` using its globally unique `ID`. */ - countryCodeByNodeId?: Maybe; - /** Reads and enables pagination through a set of `CountryCode`. */ - countryCodes?: Maybe; - event?: Maybe; - /** Reads a single `Event` using its globally unique `ID`. */ - eventByNodeId?: Maybe; - /** Reads and enables pagination through a set of `Event`. */ - events?: Maybe; - extrinsic?: Maybe; - /** Reads a single `Extrinsic` using its globally unique `ID`. */ - extrinsicByNodeId?: Maybe; - /** Reads and enables pagination through a set of `Extrinsic`. */ - extrinsics?: Maybe; - heartBeat?: Maybe; - /** Reads a single `HeartBeat` using its globally unique `ID`. */ - heartBeatByNodeId?: Maybe; - /** Reads and enables pagination through a set of `HeartBeat`. */ - heartBeats?: Maybe; - keygenThreshold?: Maybe; - /** Reads a single `KeygenThreshold` using its globally unique `ID`. */ - keygenThresholdByNodeId?: Maybe; - /** Reads and enables pagination through a set of `KeygenThreshold`. */ - keygenThresholds?: Maybe; - /** Fetches an object given its globally unique `ID`. */ - node?: Maybe; - /** The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`. */ - nodeId: Scalars['ID']; - proposalCounter?: Maybe; - /** Reads a single `ProposalCounter` using its globally unique `ID`. */ - proposalCounterByNodeId?: Maybe; - /** Reads and enables pagination through a set of `ProposalCounter`. */ - proposalCounters?: Maybe; - proposalItem?: Maybe; - /** Reads a single `ProposalItem` using its globally unique `ID`. */ - proposalItemByNodeId?: Maybe; - /** Reads and enables pagination through a set of `ProposalItem`. */ - proposalItems?: Maybe; - proposalTimelineStatus?: Maybe; - /** Reads a single `ProposalTimelineStatus` using its globally unique `ID`. */ - proposalTimelineStatusByNodeId?: Maybe; - /** Reads and enables pagination through a set of `ProposalTimelineStatus`. */ - proposalTimelineStatuses?: Maybe; - proposalVote?: Maybe; - /** Reads a single `ProposalVote` using its globally unique `ID`. */ - proposalVoteByNodeId?: Maybe; - /** Reads and enables pagination through a set of `ProposalVote`. */ - proposalVotes?: Maybe; - proposer?: Maybe; - /** Reads a single `Proposer` using its globally unique `ID`. */ - proposerByNodeId?: Maybe; - proposerThreshold?: Maybe; - /** Reads a single `ProposerThreshold` using its globally unique `ID`. */ - proposerThresholdByNodeId?: Maybe; - /** Reads and enables pagination through a set of `ProposerThreshold`. */ - proposerThresholds?: Maybe; - /** Reads and enables pagination through a set of `Proposer`. */ - proposers?: Maybe; - publicKey?: Maybe; - /** Reads a single `PublicKey` using its globally unique `ID`. */ - publicKeyByNodeId?: Maybe; - /** Reads and enables pagination through a set of `PublicKey`. */ - publicKeys?: Maybe; - /** - * Exposes the root query type nested one level down. This is helpful for Relay 1 - * which can only query top level fields if they are in a particular form. - */ - query: Query; - session?: Maybe; - /** Reads a single `Session` using its globally unique `ID`. */ - sessionByNodeId?: Maybe; - sessionProposer?: Maybe; - /** Reads a single `SessionProposer` using its globally unique `ID`. */ - sessionProposerByNodeId?: Maybe; - /** Reads and enables pagination through a set of `SessionProposer`. */ - sessionProposers?: Maybe; - sessionValidator?: Maybe; - /** Reads a single `SessionValidator` using its globally unique `ID`. */ - sessionValidatorByNodeId?: Maybe; - /** Reads and enables pagination through a set of `SessionValidator`. */ - sessionValidators?: Maybe; - /** Reads and enables pagination through a set of `Session`. */ - sessions?: Maybe; - signatureThreshold?: Maybe; - /** Reads a single `SignatureThreshold` using its globally unique `ID`. */ - signatureThresholdByNodeId?: Maybe; - /** Reads and enables pagination through a set of `SignatureThreshold`. */ - signatureThresholds?: Maybe; - sourceState?: Maybe; - /** Reads a single `SourceState` using its globally unique `ID`. */ - sourceStateByNodeId?: Maybe; - /** Reads and enables pagination through a set of `SourceState`. */ - sourceStates?: Maybe; - threshold?: Maybe; - /** Reads a single `Threshold` using its globally unique `ID`. */ - thresholdByNodeId?: Maybe; - /** Reads and enables pagination through a set of `Threshold`. */ - thresholds?: Maybe; - unsignedProposalsQueue?: Maybe; - /** Reads a single `UnsignedProposalsQueue` using its globally unique `ID`. */ - unsignedProposalsQueueByNodeId?: Maybe; - unsignedProposalsQueueItem?: Maybe; - /** Reads a single `UnsignedProposalsQueueItem` using its globally unique `ID`. */ - unsignedProposalsQueueItemByNodeId?: Maybe; - /** Reads and enables pagination through a set of `UnsignedProposalsQueueItem`. */ - unsignedProposalsQueueItems?: Maybe; - /** Reads and enables pagination through a set of `UnsignedProposalsQueue`. */ - unsignedProposalsQueues?: Maybe; - validator?: Maybe; - /** Reads a single `Validator` using its globally unique `ID`. */ - validatorByNodeId?: Maybe; - /** Reads and enables pagination through a set of `Validator`. */ - validators?: 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 QueryAccountArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryAccountByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryAccountsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryAuthoritiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryAuthorityArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryAuthorityByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryBlockArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryBlockByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryBlocksArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryCountryCodeArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryCountryCodeByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryCountryCodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryEventArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryEventByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryEventsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryExtrinsicArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryExtrinsicByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryExtrinsicsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryHeartBeatArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryHeartBeatByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryHeartBeatsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryKeygenThresholdArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryKeygenThresholdByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryKeygenThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryNodeArgs = { - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalCounterArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalCounterByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalCountersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalItemArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalItemByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalTimelineStatusArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalTimelineStatusByNodeIdArgs = { - distinct?: InputMaybe< - Array> - >; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalTimelineStatusesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalVoteArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalVoteByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposalVotesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposerArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposerByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposerThresholdArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposerThresholdByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposerThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryProposersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryPublicKeyArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryPublicKeyByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryPublicKeysArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionProposerArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionProposerByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionProposersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionValidatorArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionValidatorByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionValidatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySessionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySignatureThresholdArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySignatureThresholdByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySignatureThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySourceStateArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySourceStateByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QuerySourceStatesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryThresholdArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryThresholdByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryUnsignedProposalsQueueArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryUnsignedProposalsQueueByNodeIdArgs = { - distinct?: InputMaybe< - Array> - >; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryUnsignedProposalsQueueItemArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryUnsignedProposalsQueueItemByNodeIdArgs = { - distinct?: InputMaybe< - Array> - >; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryUnsignedProposalsQueueItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryUnsignedProposalsQueuesArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryValidatorArgs = { - id: Scalars['String']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryValidatorByNodeIdArgs = { - distinct?: InputMaybe>>; - nodeId: Scalars['ID']; -}; - -/** The root query type which gives access points into the data universe. */ -export type QueryValidatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type Session = Node & { - __typename?: 'Session'; - /** Reads and enables pagination through a set of `Account`. */ - accountsByHeartBeatSessionIdAndAccountId: SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection; - /** Reads a single `Block` that is related to this `Session`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['Int']; - /** Reads and enables pagination through a set of `HeartBeat`. */ - heartBeats: HeartBeatsConnection; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads and enables pagination through a set of `Proposer`. */ - proposersBySessionProposerSessionIdAndProposerId: SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection; - /** Reads a single `PublicKey` that is related to this `Session`. */ - publicKey?: Maybe; - publicKeyId?: Maybe; - /** Reads and enables pagination through a set of `SessionProposer`. */ - sessionProposers: SessionProposersConnection; - /** Reads and enables pagination through a set of `SessionValidator`. */ - sessionValidators: SessionValidatorsConnection; - /** Reads and enables pagination through a set of `Threshold`. */ - thresholds: ThresholdsConnection; - /** Reads and enables pagination through a set of `Validator`. */ - validatorsBySessionValidatorSessionIdAndValidatorId: SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection; -}; - -export type SessionAccountsByHeartBeatSessionIdAndAccountIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type SessionHeartBeatsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type SessionProposersBySessionProposerSessionIdAndProposerIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type SessionSessionProposersArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type SessionSessionValidatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type SessionThresholdsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -/** A connection to a list of `Account` values, with data from `HeartBeat`. */ -export type SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection = - { - __typename?: 'SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Account`, info from the `HeartBeat`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Account` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Account` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Account` values, with data from `HeartBeat`. */ -export type SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Account` edge in the connection, with data from `HeartBeat`. */ -export type SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdge = { - __typename?: 'SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** Reads and enables pagination through a set of `HeartBeat`. */ - heartBeats: HeartBeatsConnection; - /** The `Account` at the end of the edge. */ - node?: Maybe; -}; - -/** A `Account` edge in the connection, with data from `HeartBeat`. */ -export type SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdgeHeartBeatsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type SessionAggregates = { - __typename?: 'SessionAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type SessionAverageAggregates = { - __typename?: 'SessionAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type SessionDistinctCountAggregates = { - __typename?: 'SessionDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of publicKeyId across the matching connection */ - publicKeyId?: Maybe; -}; - -/** A filter to be used against `Session` object types. All fields are combined with a logical ‘and.’ */ -export type SessionFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `publicKeyId` field. */ - publicKeyId?: InputMaybe; -}; - -export type SessionMaxAggregates = { - __typename?: 'SessionMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type SessionMinAggregates = { - __typename?: 'SessionMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type SessionProposer = Node & { - __typename?: 'SessionProposer'; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads a single `Proposer` that is related to this `SessionProposer`. */ - proposer?: Maybe; - proposerId: Scalars['String']; - /** Reads a single `Session` that is related to this `SessionProposer`. */ - session?: Maybe; - sessionId: Scalars['String']; -}; - -export type SessionProposerAggregates = { - __typename?: 'SessionProposerAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -export type SessionProposerDistinctCountAggregates = { - __typename?: 'SessionProposerDistinctCountAggregates'; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of proposerId across the matching connection */ - proposerId?: Maybe; - /** Distinct count of sessionId across the matching connection */ - sessionId?: Maybe; -}; - -/** A filter to be used against `SessionProposer` object types. All fields are combined with a logical ‘and.’ */ -export type SessionProposerFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `proposerId` field. */ - proposerId?: InputMaybe; - /** Filter by the object’s `sessionId` field. */ - sessionId?: InputMaybe; -}; - -/** A connection to a list of `Proposer` values, with data from `SessionProposer`. */ -export type SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection = - { - __typename?: 'SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Proposer`, info from the `SessionProposer`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Proposer` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Proposer` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Proposer` values, with data from `SessionProposer`. */ -export type SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Proposer` edge in the connection, with data from `SessionProposer`. */ -export type SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdge = - { - __typename?: 'SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Proposer` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `SessionProposer`. */ - sessionProposers: SessionProposersConnection; - }; - -/** A `Proposer` edge in the connection, with data from `SessionProposer`. */ -export type SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdgeSessionProposersArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `SessionProposer` values. */ -export type SessionProposersConnection = { - __typename?: 'SessionProposersConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `SessionProposer` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `SessionProposer` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `SessionProposer` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `SessionProposer` values. */ -export type SessionProposersConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `SessionProposer` edge in the connection. */ -export type SessionProposersEdge = { - __typename?: 'SessionProposersEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `SessionProposer` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `SessionProposer` for usage during aggregation. */ -export enum SessionProposersGroupBy { - ProposerId = 'PROPOSER_ID', - SessionId = 'SESSION_ID', -} - -/** Conditions for `SessionProposer` aggregates. */ -export type SessionProposersHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `SessionProposer`. */ -export enum SessionProposersOrderBy { - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposerIdAsc = 'PROPOSER_ID_ASC', - ProposerIdDesc = 'PROPOSER_ID_DESC', - SessionIdAsc = 'SESSION_ID_ASC', - SessionIdDesc = 'SESSION_ID_DESC', -} - -export type SessionStddevPopulationAggregates = { - __typename?: 'SessionStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type SessionStddevSampleAggregates = { - __typename?: 'SessionStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type SessionSumAggregates = { - __typename?: 'SessionSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigInt']; -}; - -export type SessionValidator = Node & { - __typename?: 'SessionValidator'; - bestOrder: Scalars['Int']; - blockNumber: Scalars['BigFloat']; - id: Scalars['String']; - isBest: Scalars['Boolean']; - isNext: Scalars['Boolean']; - isNextBest: Scalars['Boolean']; - nextBestOrder: Scalars['Int']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - reputation: Scalars['Int']; - /** Reads a single `Session` that is related to this `SessionValidator`. */ - session?: Maybe; - sessionId: Scalars['String']; - uptime: Scalars['Int']; - /** Reads a single `Validator` that is related to this `SessionValidator`. */ - validator?: Maybe; - validatorId: Scalars['String']; -}; - -export type SessionValidatorAggregates = { - __typename?: 'SessionValidatorAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type SessionValidatorAverageAggregates = { - __typename?: 'SessionValidatorAverageAggregates'; - /** Mean average of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Mean average of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Mean average of reputation across the matching connection */ - reputation?: Maybe; - /** Mean average of uptime across the matching connection */ - uptime?: Maybe; -}; - -export type SessionValidatorDistinctCountAggregates = { - __typename?: 'SessionValidatorDistinctCountAggregates'; - /** Distinct count of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of isBest across the matching connection */ - isBest?: Maybe; - /** Distinct count of isNext across the matching connection */ - isNext?: Maybe; - /** Distinct count of isNextBest across the matching connection */ - isNextBest?: Maybe; - /** Distinct count of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Distinct count of reputation across the matching connection */ - reputation?: Maybe; - /** Distinct count of sessionId across the matching connection */ - sessionId?: Maybe; - /** Distinct count of uptime across the matching connection */ - uptime?: Maybe; - /** Distinct count of validatorId across the matching connection */ - validatorId?: Maybe; -}; - -/** A filter to be used against `SessionValidator` object types. All fields are combined with a logical ‘and.’ */ -export type SessionValidatorFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `bestOrder` field. */ - bestOrder?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `isBest` field. */ - isBest?: InputMaybe; - /** Filter by the object’s `isNext` field. */ - isNext?: InputMaybe; - /** Filter by the object’s `isNextBest` field. */ - isNextBest?: InputMaybe; - /** Filter by the object’s `nextBestOrder` field. */ - nextBestOrder?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `reputation` field. */ - reputation?: InputMaybe; - /** Filter by the object’s `sessionId` field. */ - sessionId?: InputMaybe; - /** Filter by the object’s `uptime` field. */ - uptime?: InputMaybe; - /** Filter by the object’s `validatorId` field. */ - validatorId?: InputMaybe; -}; - -export type SessionValidatorMaxAggregates = { - __typename?: 'SessionValidatorMaxAggregates'; - /** Maximum of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Maximum of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Maximum of reputation across the matching connection */ - reputation?: Maybe; - /** Maximum of uptime across the matching connection */ - uptime?: Maybe; -}; - -export type SessionValidatorMinAggregates = { - __typename?: 'SessionValidatorMinAggregates'; - /** Minimum of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Minimum of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Minimum of reputation across the matching connection */ - reputation?: Maybe; - /** Minimum of uptime across the matching connection */ - uptime?: Maybe; -}; - -export type SessionValidatorStddevPopulationAggregates = { - __typename?: 'SessionValidatorStddevPopulationAggregates'; - /** Population standard deviation of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population standard deviation of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Population standard deviation of reputation across the matching connection */ - reputation?: Maybe; - /** Population standard deviation of uptime across the matching connection */ - uptime?: Maybe; -}; - -export type SessionValidatorStddevSampleAggregates = { - __typename?: 'SessionValidatorStddevSampleAggregates'; - /** Sample standard deviation of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample standard deviation of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Sample standard deviation of reputation across the matching connection */ - reputation?: Maybe; - /** Sample standard deviation of uptime across the matching connection */ - uptime?: Maybe; -}; - -export type SessionValidatorSumAggregates = { - __typename?: 'SessionValidatorSumAggregates'; - /** Sum of bestOrder across the matching connection */ - bestOrder: Scalars['BigInt']; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigFloat']; - /** Sum of nextBestOrder across the matching connection */ - nextBestOrder: Scalars['BigInt']; - /** Sum of reputation across the matching connection */ - reputation: Scalars['BigInt']; - /** Sum of uptime across the matching connection */ - uptime: Scalars['BigInt']; -}; - -export type SessionValidatorVariancePopulationAggregates = { - __typename?: 'SessionValidatorVariancePopulationAggregates'; - /** Population variance of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Population variance of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Population variance of reputation across the matching connection */ - reputation?: Maybe; - /** Population variance of uptime across the matching connection */ - uptime?: Maybe; -}; - -export type SessionValidatorVarianceSampleAggregates = { - __typename?: 'SessionValidatorVarianceSampleAggregates'; - /** Sample variance of bestOrder across the matching connection */ - bestOrder?: Maybe; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Sample variance of nextBestOrder across the matching connection */ - nextBestOrder?: Maybe; - /** Sample variance of reputation across the matching connection */ - reputation?: Maybe; - /** Sample variance of uptime across the matching connection */ - uptime?: Maybe; -}; - -/** A connection to a list of `Validator` values, with data from `SessionValidator`. */ -export type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection = - { - __typename?: 'SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Validator`, info from the `SessionValidator`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Validator` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Validator` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Validator` values, with data from `SessionValidator`. */ -export type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Validator` edge in the connection, with data from `SessionValidator`. */ -export type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdge = - { - __typename?: 'SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Validator` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `SessionValidator`. */ - sessionValidators: SessionValidatorsConnection; - }; - -/** A `Validator` edge in the connection, with data from `SessionValidator`. */ -export type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdgeSessionValidatorsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `SessionValidator` values. */ -export type SessionValidatorsConnection = { - __typename?: 'SessionValidatorsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `SessionValidator` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `SessionValidator` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `SessionValidator` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `SessionValidator` values. */ -export type SessionValidatorsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `SessionValidator` edge in the connection. */ -export type SessionValidatorsEdge = { - __typename?: 'SessionValidatorsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `SessionValidator` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `SessionValidator` for usage during aggregation. */ -export enum SessionValidatorsGroupBy { - BestOrder = 'BEST_ORDER', - BlockNumber = 'BLOCK_NUMBER', - IsBest = 'IS_BEST', - IsNext = 'IS_NEXT', - IsNextBest = 'IS_NEXT_BEST', - NextBestOrder = 'NEXT_BEST_ORDER', - Reputation = 'REPUTATION', - SessionId = 'SESSION_ID', - Uptime = 'UPTIME', - ValidatorId = 'VALIDATOR_ID', -} - -export type SessionValidatorsHavingAverageInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingDistinctCountInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -/** Conditions for `SessionValidator` aggregates. */ -export type SessionValidatorsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type SessionValidatorsHavingMaxInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingMinInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingStddevPopulationInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingStddevSampleInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingSumInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingVariancePopulationInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -export type SessionValidatorsHavingVarianceSampleInput = { - bestOrder?: InputMaybe; - blockNumber?: InputMaybe; - nextBestOrder?: InputMaybe; - reputation?: InputMaybe; - uptime?: InputMaybe; -}; - -/** Methods to use when ordering `SessionValidator`. */ -export enum SessionValidatorsOrderBy { - BestOrderAsc = 'BEST_ORDER_ASC', - BestOrderDesc = 'BEST_ORDER_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - IsBestAsc = 'IS_BEST_ASC', - IsBestDesc = 'IS_BEST_DESC', - IsNextAsc = 'IS_NEXT_ASC', - IsNextBestAsc = 'IS_NEXT_BEST_ASC', - IsNextBestDesc = 'IS_NEXT_BEST_DESC', - IsNextDesc = 'IS_NEXT_DESC', - Natural = 'NATURAL', - NextBestOrderAsc = 'NEXT_BEST_ORDER_ASC', - NextBestOrderDesc = 'NEXT_BEST_ORDER_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ReputationAsc = 'REPUTATION_ASC', - ReputationDesc = 'REPUTATION_DESC', - SessionIdAsc = 'SESSION_ID_ASC', - SessionIdDesc = 'SESSION_ID_DESC', - UptimeAsc = 'UPTIME_ASC', - UptimeDesc = 'UPTIME_DESC', - ValidatorIdAsc = 'VALIDATOR_ID_ASC', - ValidatorIdDesc = 'VALIDATOR_ID_DESC', -} - -export type SessionVariancePopulationAggregates = { - __typename?: 'SessionVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type SessionVarianceSampleAggregates = { - __typename?: 'SessionVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `Session` values. */ -export type SessionsConnection = { - __typename?: 'SessionsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Session` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Session` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Session` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Session` values. */ -export type SessionsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Session` edge in the connection. */ -export type SessionsEdge = { - __typename?: 'SessionsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Session` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Session` for usage during aggregation. */ -export enum SessionsGroupBy { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - PublicKeyId = 'PUBLIC_KEY_ID', -} - -export type SessionsHavingAverageInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingDistinctCountInput = { - blockNumber?: InputMaybe; -}; - -/** Conditions for `Session` aggregates. */ -export type SessionsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type SessionsHavingMaxInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingMinInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingStddevPopulationInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingStddevSampleInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingSumInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingVariancePopulationInput = { - blockNumber?: InputMaybe; -}; - -export type SessionsHavingVarianceSampleInput = { - blockNumber?: InputMaybe; -}; - -/** Methods to use when ordering `Session`. */ -export enum SessionsOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - HeartBeatsAverageAccountIdAsc = 'HEART_BEATS_AVERAGE_ACCOUNT_ID_ASC', - HeartBeatsAverageAccountIdDesc = 'HEART_BEATS_AVERAGE_ACCOUNT_ID_DESC', - HeartBeatsAverageBlockNumberAsc = 'HEART_BEATS_AVERAGE_BLOCK_NUMBER_ASC', - HeartBeatsAverageBlockNumberDesc = 'HEART_BEATS_AVERAGE_BLOCK_NUMBER_DESC', - HeartBeatsAverageIdAsc = 'HEART_BEATS_AVERAGE_ID_ASC', - HeartBeatsAverageIdDesc = 'HEART_BEATS_AVERAGE_ID_DESC', - HeartBeatsAverageSessionIdAsc = 'HEART_BEATS_AVERAGE_SESSION_ID_ASC', - HeartBeatsAverageSessionIdDesc = 'HEART_BEATS_AVERAGE_SESSION_ID_DESC', - HeartBeatsCountAsc = 'HEART_BEATS_COUNT_ASC', - HeartBeatsCountDesc = 'HEART_BEATS_COUNT_DESC', - HeartBeatsDistinctCountAccountIdAsc = 'HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_ASC', - HeartBeatsDistinctCountAccountIdDesc = 'HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_DESC', - HeartBeatsDistinctCountBlockNumberAsc = 'HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - HeartBeatsDistinctCountBlockNumberDesc = 'HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - HeartBeatsDistinctCountIdAsc = 'HEART_BEATS_DISTINCT_COUNT_ID_ASC', - HeartBeatsDistinctCountIdDesc = 'HEART_BEATS_DISTINCT_COUNT_ID_DESC', - HeartBeatsDistinctCountSessionIdAsc = 'HEART_BEATS_DISTINCT_COUNT_SESSION_ID_ASC', - HeartBeatsDistinctCountSessionIdDesc = 'HEART_BEATS_DISTINCT_COUNT_SESSION_ID_DESC', - HeartBeatsMaxAccountIdAsc = 'HEART_BEATS_MAX_ACCOUNT_ID_ASC', - HeartBeatsMaxAccountIdDesc = 'HEART_BEATS_MAX_ACCOUNT_ID_DESC', - HeartBeatsMaxBlockNumberAsc = 'HEART_BEATS_MAX_BLOCK_NUMBER_ASC', - HeartBeatsMaxBlockNumberDesc = 'HEART_BEATS_MAX_BLOCK_NUMBER_DESC', - HeartBeatsMaxIdAsc = 'HEART_BEATS_MAX_ID_ASC', - HeartBeatsMaxIdDesc = 'HEART_BEATS_MAX_ID_DESC', - HeartBeatsMaxSessionIdAsc = 'HEART_BEATS_MAX_SESSION_ID_ASC', - HeartBeatsMaxSessionIdDesc = 'HEART_BEATS_MAX_SESSION_ID_DESC', - HeartBeatsMinAccountIdAsc = 'HEART_BEATS_MIN_ACCOUNT_ID_ASC', - HeartBeatsMinAccountIdDesc = 'HEART_BEATS_MIN_ACCOUNT_ID_DESC', - HeartBeatsMinBlockNumberAsc = 'HEART_BEATS_MIN_BLOCK_NUMBER_ASC', - HeartBeatsMinBlockNumberDesc = 'HEART_BEATS_MIN_BLOCK_NUMBER_DESC', - HeartBeatsMinIdAsc = 'HEART_BEATS_MIN_ID_ASC', - HeartBeatsMinIdDesc = 'HEART_BEATS_MIN_ID_DESC', - HeartBeatsMinSessionIdAsc = 'HEART_BEATS_MIN_SESSION_ID_ASC', - HeartBeatsMinSessionIdDesc = 'HEART_BEATS_MIN_SESSION_ID_DESC', - HeartBeatsStddevPopulationAccountIdAsc = 'HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_ASC', - HeartBeatsStddevPopulationAccountIdDesc = 'HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_DESC', - HeartBeatsStddevPopulationBlockNumberAsc = 'HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - HeartBeatsStddevPopulationBlockNumberDesc = 'HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - HeartBeatsStddevPopulationIdAsc = 'HEART_BEATS_STDDEV_POPULATION_ID_ASC', - HeartBeatsStddevPopulationIdDesc = 'HEART_BEATS_STDDEV_POPULATION_ID_DESC', - HeartBeatsStddevPopulationSessionIdAsc = 'HEART_BEATS_STDDEV_POPULATION_SESSION_ID_ASC', - HeartBeatsStddevPopulationSessionIdDesc = 'HEART_BEATS_STDDEV_POPULATION_SESSION_ID_DESC', - HeartBeatsStddevSampleAccountIdAsc = 'HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_ASC', - HeartBeatsStddevSampleAccountIdDesc = 'HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_DESC', - HeartBeatsStddevSampleBlockNumberAsc = 'HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - HeartBeatsStddevSampleBlockNumberDesc = 'HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - HeartBeatsStddevSampleIdAsc = 'HEART_BEATS_STDDEV_SAMPLE_ID_ASC', - HeartBeatsStddevSampleIdDesc = 'HEART_BEATS_STDDEV_SAMPLE_ID_DESC', - HeartBeatsStddevSampleSessionIdAsc = 'HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_ASC', - HeartBeatsStddevSampleSessionIdDesc = 'HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_DESC', - HeartBeatsSumAccountIdAsc = 'HEART_BEATS_SUM_ACCOUNT_ID_ASC', - HeartBeatsSumAccountIdDesc = 'HEART_BEATS_SUM_ACCOUNT_ID_DESC', - HeartBeatsSumBlockNumberAsc = 'HEART_BEATS_SUM_BLOCK_NUMBER_ASC', - HeartBeatsSumBlockNumberDesc = 'HEART_BEATS_SUM_BLOCK_NUMBER_DESC', - HeartBeatsSumIdAsc = 'HEART_BEATS_SUM_ID_ASC', - HeartBeatsSumIdDesc = 'HEART_BEATS_SUM_ID_DESC', - HeartBeatsSumSessionIdAsc = 'HEART_BEATS_SUM_SESSION_ID_ASC', - HeartBeatsSumSessionIdDesc = 'HEART_BEATS_SUM_SESSION_ID_DESC', - HeartBeatsVariancePopulationAccountIdAsc = 'HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_ASC', - HeartBeatsVariancePopulationAccountIdDesc = 'HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_DESC', - HeartBeatsVariancePopulationBlockNumberAsc = 'HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - HeartBeatsVariancePopulationBlockNumberDesc = 'HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - HeartBeatsVariancePopulationIdAsc = 'HEART_BEATS_VARIANCE_POPULATION_ID_ASC', - HeartBeatsVariancePopulationIdDesc = 'HEART_BEATS_VARIANCE_POPULATION_ID_DESC', - HeartBeatsVariancePopulationSessionIdAsc = 'HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_ASC', - HeartBeatsVariancePopulationSessionIdDesc = 'HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_DESC', - HeartBeatsVarianceSampleAccountIdAsc = 'HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', - HeartBeatsVarianceSampleAccountIdDesc = 'HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', - HeartBeatsVarianceSampleBlockNumberAsc = 'HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - HeartBeatsVarianceSampleBlockNumberDesc = 'HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - HeartBeatsVarianceSampleIdAsc = 'HEART_BEATS_VARIANCE_SAMPLE_ID_ASC', - HeartBeatsVarianceSampleIdDesc = 'HEART_BEATS_VARIANCE_SAMPLE_ID_DESC', - HeartBeatsVarianceSampleSessionIdAsc = 'HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_ASC', - HeartBeatsVarianceSampleSessionIdDesc = 'HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - PublicKeyIdAsc = 'PUBLIC_KEY_ID_ASC', - PublicKeyIdDesc = 'PUBLIC_KEY_ID_DESC', - SessionProposersAverageIdAsc = 'SESSION_PROPOSERS_AVERAGE_ID_ASC', - SessionProposersAverageIdDesc = 'SESSION_PROPOSERS_AVERAGE_ID_DESC', - SessionProposersAverageProposerIdAsc = 'SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_ASC', - SessionProposersAverageProposerIdDesc = 'SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_DESC', - SessionProposersAverageSessionIdAsc = 'SESSION_PROPOSERS_AVERAGE_SESSION_ID_ASC', - SessionProposersAverageSessionIdDesc = 'SESSION_PROPOSERS_AVERAGE_SESSION_ID_DESC', - SessionProposersCountAsc = 'SESSION_PROPOSERS_COUNT_ASC', - SessionProposersCountDesc = 'SESSION_PROPOSERS_COUNT_DESC', - SessionProposersDistinctCountIdAsc = 'SESSION_PROPOSERS_DISTINCT_COUNT_ID_ASC', - SessionProposersDistinctCountIdDesc = 'SESSION_PROPOSERS_DISTINCT_COUNT_ID_DESC', - SessionProposersDistinctCountProposerIdAsc = 'SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_ASC', - SessionProposersDistinctCountProposerIdDesc = 'SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_DESC', - SessionProposersDistinctCountSessionIdAsc = 'SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_ASC', - SessionProposersDistinctCountSessionIdDesc = 'SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_DESC', - SessionProposersMaxIdAsc = 'SESSION_PROPOSERS_MAX_ID_ASC', - SessionProposersMaxIdDesc = 'SESSION_PROPOSERS_MAX_ID_DESC', - SessionProposersMaxProposerIdAsc = 'SESSION_PROPOSERS_MAX_PROPOSER_ID_ASC', - SessionProposersMaxProposerIdDesc = 'SESSION_PROPOSERS_MAX_PROPOSER_ID_DESC', - SessionProposersMaxSessionIdAsc = 'SESSION_PROPOSERS_MAX_SESSION_ID_ASC', - SessionProposersMaxSessionIdDesc = 'SESSION_PROPOSERS_MAX_SESSION_ID_DESC', - SessionProposersMinIdAsc = 'SESSION_PROPOSERS_MIN_ID_ASC', - SessionProposersMinIdDesc = 'SESSION_PROPOSERS_MIN_ID_DESC', - SessionProposersMinProposerIdAsc = 'SESSION_PROPOSERS_MIN_PROPOSER_ID_ASC', - SessionProposersMinProposerIdDesc = 'SESSION_PROPOSERS_MIN_PROPOSER_ID_DESC', - SessionProposersMinSessionIdAsc = 'SESSION_PROPOSERS_MIN_SESSION_ID_ASC', - SessionProposersMinSessionIdDesc = 'SESSION_PROPOSERS_MIN_SESSION_ID_DESC', - SessionProposersStddevPopulationIdAsc = 'SESSION_PROPOSERS_STDDEV_POPULATION_ID_ASC', - SessionProposersStddevPopulationIdDesc = 'SESSION_PROPOSERS_STDDEV_POPULATION_ID_DESC', - SessionProposersStddevPopulationProposerIdAsc = 'SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_ASC', - SessionProposersStddevPopulationProposerIdDesc = 'SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_DESC', - SessionProposersStddevPopulationSessionIdAsc = 'SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_ASC', - SessionProposersStddevPopulationSessionIdDesc = 'SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_DESC', - SessionProposersStddevSampleIdAsc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_ID_ASC', - SessionProposersStddevSampleIdDesc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_ID_DESC', - SessionProposersStddevSampleProposerIdAsc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_ASC', - SessionProposersStddevSampleProposerIdDesc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_DESC', - SessionProposersStddevSampleSessionIdAsc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_ASC', - SessionProposersStddevSampleSessionIdDesc = 'SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_DESC', - SessionProposersSumIdAsc = 'SESSION_PROPOSERS_SUM_ID_ASC', - SessionProposersSumIdDesc = 'SESSION_PROPOSERS_SUM_ID_DESC', - SessionProposersSumProposerIdAsc = 'SESSION_PROPOSERS_SUM_PROPOSER_ID_ASC', - SessionProposersSumProposerIdDesc = 'SESSION_PROPOSERS_SUM_PROPOSER_ID_DESC', - SessionProposersSumSessionIdAsc = 'SESSION_PROPOSERS_SUM_SESSION_ID_ASC', - SessionProposersSumSessionIdDesc = 'SESSION_PROPOSERS_SUM_SESSION_ID_DESC', - SessionProposersVariancePopulationIdAsc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_ID_ASC', - SessionProposersVariancePopulationIdDesc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_ID_DESC', - SessionProposersVariancePopulationProposerIdAsc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_ASC', - SessionProposersVariancePopulationProposerIdDesc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_DESC', - SessionProposersVariancePopulationSessionIdAsc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_ASC', - SessionProposersVariancePopulationSessionIdDesc = 'SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_DESC', - SessionProposersVarianceSampleIdAsc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_ASC', - SessionProposersVarianceSampleIdDesc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_DESC', - SessionProposersVarianceSampleProposerIdAsc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_ASC', - SessionProposersVarianceSampleProposerIdDesc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_DESC', - SessionProposersVarianceSampleSessionIdAsc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_ASC', - SessionProposersVarianceSampleSessionIdDesc = 'SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_DESC', - SessionValidatorsAverageBestOrderAsc = 'SESSION_VALIDATORS_AVERAGE_BEST_ORDER_ASC', - SessionValidatorsAverageBestOrderDesc = 'SESSION_VALIDATORS_AVERAGE_BEST_ORDER_DESC', - SessionValidatorsAverageBlockNumberAsc = 'SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_ASC', - SessionValidatorsAverageBlockNumberDesc = 'SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_DESC', - SessionValidatorsAverageIdAsc = 'SESSION_VALIDATORS_AVERAGE_ID_ASC', - SessionValidatorsAverageIdDesc = 'SESSION_VALIDATORS_AVERAGE_ID_DESC', - SessionValidatorsAverageIsBestAsc = 'SESSION_VALIDATORS_AVERAGE_IS_BEST_ASC', - SessionValidatorsAverageIsBestDesc = 'SESSION_VALIDATORS_AVERAGE_IS_BEST_DESC', - SessionValidatorsAverageIsNextAsc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_ASC', - SessionValidatorsAverageIsNextBestAsc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_ASC', - SessionValidatorsAverageIsNextBestDesc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_DESC', - SessionValidatorsAverageIsNextDesc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_DESC', - SessionValidatorsAverageNextBestOrderAsc = 'SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_ASC', - SessionValidatorsAverageNextBestOrderDesc = 'SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_DESC', - SessionValidatorsAverageReputationAsc = 'SESSION_VALIDATORS_AVERAGE_REPUTATION_ASC', - SessionValidatorsAverageReputationDesc = 'SESSION_VALIDATORS_AVERAGE_REPUTATION_DESC', - SessionValidatorsAverageSessionIdAsc = 'SESSION_VALIDATORS_AVERAGE_SESSION_ID_ASC', - SessionValidatorsAverageSessionIdDesc = 'SESSION_VALIDATORS_AVERAGE_SESSION_ID_DESC', - SessionValidatorsAverageUptimeAsc = 'SESSION_VALIDATORS_AVERAGE_UPTIME_ASC', - SessionValidatorsAverageUptimeDesc = 'SESSION_VALIDATORS_AVERAGE_UPTIME_DESC', - SessionValidatorsAverageValidatorIdAsc = 'SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_ASC', - SessionValidatorsAverageValidatorIdDesc = 'SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_DESC', - SessionValidatorsCountAsc = 'SESSION_VALIDATORS_COUNT_ASC', - SessionValidatorsCountDesc = 'SESSION_VALIDATORS_COUNT_DESC', - SessionValidatorsDistinctCountBestOrderAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_ASC', - SessionValidatorsDistinctCountBestOrderDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_DESC', - SessionValidatorsDistinctCountBlockNumberAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - SessionValidatorsDistinctCountBlockNumberDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - SessionValidatorsDistinctCountIdAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_ID_ASC', - SessionValidatorsDistinctCountIdDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_ID_DESC', - SessionValidatorsDistinctCountIsBestAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_ASC', - SessionValidatorsDistinctCountIsBestDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_DESC', - SessionValidatorsDistinctCountIsNextAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_ASC', - SessionValidatorsDistinctCountIsNextBestAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_ASC', - SessionValidatorsDistinctCountIsNextBestDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_DESC', - SessionValidatorsDistinctCountIsNextDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_DESC', - SessionValidatorsDistinctCountNextBestOrderAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_ASC', - SessionValidatorsDistinctCountNextBestOrderDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_DESC', - SessionValidatorsDistinctCountReputationAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_ASC', - SessionValidatorsDistinctCountReputationDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_DESC', - SessionValidatorsDistinctCountSessionIdAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_ASC', - SessionValidatorsDistinctCountSessionIdDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_DESC', - SessionValidatorsDistinctCountUptimeAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_ASC', - SessionValidatorsDistinctCountUptimeDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_DESC', - SessionValidatorsDistinctCountValidatorIdAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_ASC', - SessionValidatorsDistinctCountValidatorIdDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_DESC', - SessionValidatorsMaxBestOrderAsc = 'SESSION_VALIDATORS_MAX_BEST_ORDER_ASC', - SessionValidatorsMaxBestOrderDesc = 'SESSION_VALIDATORS_MAX_BEST_ORDER_DESC', - SessionValidatorsMaxBlockNumberAsc = 'SESSION_VALIDATORS_MAX_BLOCK_NUMBER_ASC', - SessionValidatorsMaxBlockNumberDesc = 'SESSION_VALIDATORS_MAX_BLOCK_NUMBER_DESC', - SessionValidatorsMaxIdAsc = 'SESSION_VALIDATORS_MAX_ID_ASC', - SessionValidatorsMaxIdDesc = 'SESSION_VALIDATORS_MAX_ID_DESC', - SessionValidatorsMaxIsBestAsc = 'SESSION_VALIDATORS_MAX_IS_BEST_ASC', - SessionValidatorsMaxIsBestDesc = 'SESSION_VALIDATORS_MAX_IS_BEST_DESC', - SessionValidatorsMaxIsNextAsc = 'SESSION_VALIDATORS_MAX_IS_NEXT_ASC', - SessionValidatorsMaxIsNextBestAsc = 'SESSION_VALIDATORS_MAX_IS_NEXT_BEST_ASC', - SessionValidatorsMaxIsNextBestDesc = 'SESSION_VALIDATORS_MAX_IS_NEXT_BEST_DESC', - SessionValidatorsMaxIsNextDesc = 'SESSION_VALIDATORS_MAX_IS_NEXT_DESC', - SessionValidatorsMaxNextBestOrderAsc = 'SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_ASC', - SessionValidatorsMaxNextBestOrderDesc = 'SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_DESC', - SessionValidatorsMaxReputationAsc = 'SESSION_VALIDATORS_MAX_REPUTATION_ASC', - SessionValidatorsMaxReputationDesc = 'SESSION_VALIDATORS_MAX_REPUTATION_DESC', - SessionValidatorsMaxSessionIdAsc = 'SESSION_VALIDATORS_MAX_SESSION_ID_ASC', - SessionValidatorsMaxSessionIdDesc = 'SESSION_VALIDATORS_MAX_SESSION_ID_DESC', - SessionValidatorsMaxUptimeAsc = 'SESSION_VALIDATORS_MAX_UPTIME_ASC', - SessionValidatorsMaxUptimeDesc = 'SESSION_VALIDATORS_MAX_UPTIME_DESC', - SessionValidatorsMaxValidatorIdAsc = 'SESSION_VALIDATORS_MAX_VALIDATOR_ID_ASC', - SessionValidatorsMaxValidatorIdDesc = 'SESSION_VALIDATORS_MAX_VALIDATOR_ID_DESC', - SessionValidatorsMinBestOrderAsc = 'SESSION_VALIDATORS_MIN_BEST_ORDER_ASC', - SessionValidatorsMinBestOrderDesc = 'SESSION_VALIDATORS_MIN_BEST_ORDER_DESC', - SessionValidatorsMinBlockNumberAsc = 'SESSION_VALIDATORS_MIN_BLOCK_NUMBER_ASC', - SessionValidatorsMinBlockNumberDesc = 'SESSION_VALIDATORS_MIN_BLOCK_NUMBER_DESC', - SessionValidatorsMinIdAsc = 'SESSION_VALIDATORS_MIN_ID_ASC', - SessionValidatorsMinIdDesc = 'SESSION_VALIDATORS_MIN_ID_DESC', - SessionValidatorsMinIsBestAsc = 'SESSION_VALIDATORS_MIN_IS_BEST_ASC', - SessionValidatorsMinIsBestDesc = 'SESSION_VALIDATORS_MIN_IS_BEST_DESC', - SessionValidatorsMinIsNextAsc = 'SESSION_VALIDATORS_MIN_IS_NEXT_ASC', - SessionValidatorsMinIsNextBestAsc = 'SESSION_VALIDATORS_MIN_IS_NEXT_BEST_ASC', - SessionValidatorsMinIsNextBestDesc = 'SESSION_VALIDATORS_MIN_IS_NEXT_BEST_DESC', - SessionValidatorsMinIsNextDesc = 'SESSION_VALIDATORS_MIN_IS_NEXT_DESC', - SessionValidatorsMinNextBestOrderAsc = 'SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_ASC', - SessionValidatorsMinNextBestOrderDesc = 'SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_DESC', - SessionValidatorsMinReputationAsc = 'SESSION_VALIDATORS_MIN_REPUTATION_ASC', - SessionValidatorsMinReputationDesc = 'SESSION_VALIDATORS_MIN_REPUTATION_DESC', - SessionValidatorsMinSessionIdAsc = 'SESSION_VALIDATORS_MIN_SESSION_ID_ASC', - SessionValidatorsMinSessionIdDesc = 'SESSION_VALIDATORS_MIN_SESSION_ID_DESC', - SessionValidatorsMinUptimeAsc = 'SESSION_VALIDATORS_MIN_UPTIME_ASC', - SessionValidatorsMinUptimeDesc = 'SESSION_VALIDATORS_MIN_UPTIME_DESC', - SessionValidatorsMinValidatorIdAsc = 'SESSION_VALIDATORS_MIN_VALIDATOR_ID_ASC', - SessionValidatorsMinValidatorIdDesc = 'SESSION_VALIDATORS_MIN_VALIDATOR_ID_DESC', - SessionValidatorsStddevPopulationBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_ASC', - SessionValidatorsStddevPopulationBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_DESC', - SessionValidatorsStddevPopulationBlockNumberAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - SessionValidatorsStddevPopulationBlockNumberDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - SessionValidatorsStddevPopulationIdAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_ID_ASC', - SessionValidatorsStddevPopulationIdDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_ID_DESC', - SessionValidatorsStddevPopulationIsBestAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_ASC', - SessionValidatorsStddevPopulationIsBestDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_DESC', - SessionValidatorsStddevPopulationIsNextAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_ASC', - SessionValidatorsStddevPopulationIsNextBestAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_ASC', - SessionValidatorsStddevPopulationIsNextBestDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_DESC', - SessionValidatorsStddevPopulationIsNextDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_DESC', - SessionValidatorsStddevPopulationNextBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_ASC', - SessionValidatorsStddevPopulationNextBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_DESC', - SessionValidatorsStddevPopulationReputationAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_ASC', - SessionValidatorsStddevPopulationReputationDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_DESC', - SessionValidatorsStddevPopulationSessionIdAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_ASC', - SessionValidatorsStddevPopulationSessionIdDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_DESC', - SessionValidatorsStddevPopulationUptimeAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_ASC', - SessionValidatorsStddevPopulationUptimeDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_DESC', - SessionValidatorsStddevPopulationValidatorIdAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_ASC', - SessionValidatorsStddevPopulationValidatorIdDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_DESC', - SessionValidatorsStddevSampleBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_ASC', - SessionValidatorsStddevSampleBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_DESC', - SessionValidatorsStddevSampleBlockNumberAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - SessionValidatorsStddevSampleBlockNumberDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - SessionValidatorsStddevSampleIdAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_ID_ASC', - SessionValidatorsStddevSampleIdDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_ID_DESC', - SessionValidatorsStddevSampleIsBestAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_ASC', - SessionValidatorsStddevSampleIsBestDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_DESC', - SessionValidatorsStddevSampleIsNextAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_ASC', - SessionValidatorsStddevSampleIsNextBestAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_ASC', - SessionValidatorsStddevSampleIsNextBestDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_DESC', - SessionValidatorsStddevSampleIsNextDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_DESC', - SessionValidatorsStddevSampleNextBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_ASC', - SessionValidatorsStddevSampleNextBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_DESC', - SessionValidatorsStddevSampleReputationAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_ASC', - SessionValidatorsStddevSampleReputationDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_DESC', - SessionValidatorsStddevSampleSessionIdAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_ASC', - SessionValidatorsStddevSampleSessionIdDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_DESC', - SessionValidatorsStddevSampleUptimeAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_ASC', - SessionValidatorsStddevSampleUptimeDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_DESC', - SessionValidatorsStddevSampleValidatorIdAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_ASC', - SessionValidatorsStddevSampleValidatorIdDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_DESC', - SessionValidatorsSumBestOrderAsc = 'SESSION_VALIDATORS_SUM_BEST_ORDER_ASC', - SessionValidatorsSumBestOrderDesc = 'SESSION_VALIDATORS_SUM_BEST_ORDER_DESC', - SessionValidatorsSumBlockNumberAsc = 'SESSION_VALIDATORS_SUM_BLOCK_NUMBER_ASC', - SessionValidatorsSumBlockNumberDesc = 'SESSION_VALIDATORS_SUM_BLOCK_NUMBER_DESC', - SessionValidatorsSumIdAsc = 'SESSION_VALIDATORS_SUM_ID_ASC', - SessionValidatorsSumIdDesc = 'SESSION_VALIDATORS_SUM_ID_DESC', - SessionValidatorsSumIsBestAsc = 'SESSION_VALIDATORS_SUM_IS_BEST_ASC', - SessionValidatorsSumIsBestDesc = 'SESSION_VALIDATORS_SUM_IS_BEST_DESC', - SessionValidatorsSumIsNextAsc = 'SESSION_VALIDATORS_SUM_IS_NEXT_ASC', - SessionValidatorsSumIsNextBestAsc = 'SESSION_VALIDATORS_SUM_IS_NEXT_BEST_ASC', - SessionValidatorsSumIsNextBestDesc = 'SESSION_VALIDATORS_SUM_IS_NEXT_BEST_DESC', - SessionValidatorsSumIsNextDesc = 'SESSION_VALIDATORS_SUM_IS_NEXT_DESC', - SessionValidatorsSumNextBestOrderAsc = 'SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_ASC', - SessionValidatorsSumNextBestOrderDesc = 'SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_DESC', - SessionValidatorsSumReputationAsc = 'SESSION_VALIDATORS_SUM_REPUTATION_ASC', - SessionValidatorsSumReputationDesc = 'SESSION_VALIDATORS_SUM_REPUTATION_DESC', - SessionValidatorsSumSessionIdAsc = 'SESSION_VALIDATORS_SUM_SESSION_ID_ASC', - SessionValidatorsSumSessionIdDesc = 'SESSION_VALIDATORS_SUM_SESSION_ID_DESC', - SessionValidatorsSumUptimeAsc = 'SESSION_VALIDATORS_SUM_UPTIME_ASC', - SessionValidatorsSumUptimeDesc = 'SESSION_VALIDATORS_SUM_UPTIME_DESC', - SessionValidatorsSumValidatorIdAsc = 'SESSION_VALIDATORS_SUM_VALIDATOR_ID_ASC', - SessionValidatorsSumValidatorIdDesc = 'SESSION_VALIDATORS_SUM_VALIDATOR_ID_DESC', - SessionValidatorsVariancePopulationBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_ASC', - SessionValidatorsVariancePopulationBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_DESC', - SessionValidatorsVariancePopulationBlockNumberAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - SessionValidatorsVariancePopulationBlockNumberDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - SessionValidatorsVariancePopulationIdAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_ID_ASC', - SessionValidatorsVariancePopulationIdDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_ID_DESC', - SessionValidatorsVariancePopulationIsBestAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_ASC', - SessionValidatorsVariancePopulationIsBestDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_DESC', - SessionValidatorsVariancePopulationIsNextAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_ASC', - SessionValidatorsVariancePopulationIsNextBestAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_ASC', - SessionValidatorsVariancePopulationIsNextBestDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_DESC', - SessionValidatorsVariancePopulationIsNextDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_DESC', - SessionValidatorsVariancePopulationNextBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_ASC', - SessionValidatorsVariancePopulationNextBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_DESC', - SessionValidatorsVariancePopulationReputationAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_ASC', - SessionValidatorsVariancePopulationReputationDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_DESC', - SessionValidatorsVariancePopulationSessionIdAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_ASC', - SessionValidatorsVariancePopulationSessionIdDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_DESC', - SessionValidatorsVariancePopulationUptimeAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_ASC', - SessionValidatorsVariancePopulationUptimeDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_DESC', - SessionValidatorsVariancePopulationValidatorIdAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_ASC', - SessionValidatorsVariancePopulationValidatorIdDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_DESC', - SessionValidatorsVarianceSampleBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_ASC', - SessionValidatorsVarianceSampleBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_DESC', - SessionValidatorsVarianceSampleBlockNumberAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - SessionValidatorsVarianceSampleBlockNumberDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - SessionValidatorsVarianceSampleIdAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_ASC', - SessionValidatorsVarianceSampleIdDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_DESC', - SessionValidatorsVarianceSampleIsBestAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_ASC', - SessionValidatorsVarianceSampleIsBestDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_DESC', - SessionValidatorsVarianceSampleIsNextAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_ASC', - SessionValidatorsVarianceSampleIsNextBestAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_ASC', - SessionValidatorsVarianceSampleIsNextBestDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_DESC', - SessionValidatorsVarianceSampleIsNextDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_DESC', - SessionValidatorsVarianceSampleNextBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_ASC', - SessionValidatorsVarianceSampleNextBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_DESC', - SessionValidatorsVarianceSampleReputationAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_ASC', - SessionValidatorsVarianceSampleReputationDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_DESC', - SessionValidatorsVarianceSampleSessionIdAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_ASC', - SessionValidatorsVarianceSampleSessionIdDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_DESC', - SessionValidatorsVarianceSampleUptimeAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_ASC', - SessionValidatorsVarianceSampleUptimeDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_DESC', - SessionValidatorsVarianceSampleValidatorIdAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_ASC', - SessionValidatorsVarianceSampleValidatorIdDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_DESC', - ThresholdsAverageCurrentAsc = 'THRESHOLDS_AVERAGE_CURRENT_ASC', - ThresholdsAverageCurrentDesc = 'THRESHOLDS_AVERAGE_CURRENT_DESC', - ThresholdsAverageIdAsc = 'THRESHOLDS_AVERAGE_ID_ASC', - ThresholdsAverageIdDesc = 'THRESHOLDS_AVERAGE_ID_DESC', - ThresholdsAverageNextAsc = 'THRESHOLDS_AVERAGE_NEXT_ASC', - ThresholdsAverageNextDesc = 'THRESHOLDS_AVERAGE_NEXT_DESC', - ThresholdsAveragePendingAsc = 'THRESHOLDS_AVERAGE_PENDING_ASC', - ThresholdsAveragePendingDesc = 'THRESHOLDS_AVERAGE_PENDING_DESC', - ThresholdsAverageSessionIdAsc = 'THRESHOLDS_AVERAGE_SESSION_ID_ASC', - ThresholdsAverageSessionIdDesc = 'THRESHOLDS_AVERAGE_SESSION_ID_DESC', - ThresholdsAverageVariantAsc = 'THRESHOLDS_AVERAGE_VARIANT_ASC', - ThresholdsAverageVariantDesc = 'THRESHOLDS_AVERAGE_VARIANT_DESC', - ThresholdsCountAsc = 'THRESHOLDS_COUNT_ASC', - ThresholdsCountDesc = 'THRESHOLDS_COUNT_DESC', - ThresholdsDistinctCountCurrentAsc = 'THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC', - ThresholdsDistinctCountCurrentDesc = 'THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC', - ThresholdsDistinctCountIdAsc = 'THRESHOLDS_DISTINCT_COUNT_ID_ASC', - ThresholdsDistinctCountIdDesc = 'THRESHOLDS_DISTINCT_COUNT_ID_DESC', - ThresholdsDistinctCountNextAsc = 'THRESHOLDS_DISTINCT_COUNT_NEXT_ASC', - ThresholdsDistinctCountNextDesc = 'THRESHOLDS_DISTINCT_COUNT_NEXT_DESC', - ThresholdsDistinctCountPendingAsc = 'THRESHOLDS_DISTINCT_COUNT_PENDING_ASC', - ThresholdsDistinctCountPendingDesc = 'THRESHOLDS_DISTINCT_COUNT_PENDING_DESC', - ThresholdsDistinctCountSessionIdAsc = 'THRESHOLDS_DISTINCT_COUNT_SESSION_ID_ASC', - ThresholdsDistinctCountSessionIdDesc = 'THRESHOLDS_DISTINCT_COUNT_SESSION_ID_DESC', - ThresholdsDistinctCountVariantAsc = 'THRESHOLDS_DISTINCT_COUNT_VARIANT_ASC', - ThresholdsDistinctCountVariantDesc = 'THRESHOLDS_DISTINCT_COUNT_VARIANT_DESC', - ThresholdsMaxCurrentAsc = 'THRESHOLDS_MAX_CURRENT_ASC', - ThresholdsMaxCurrentDesc = 'THRESHOLDS_MAX_CURRENT_DESC', - ThresholdsMaxIdAsc = 'THRESHOLDS_MAX_ID_ASC', - ThresholdsMaxIdDesc = 'THRESHOLDS_MAX_ID_DESC', - ThresholdsMaxNextAsc = 'THRESHOLDS_MAX_NEXT_ASC', - ThresholdsMaxNextDesc = 'THRESHOLDS_MAX_NEXT_DESC', - ThresholdsMaxPendingAsc = 'THRESHOLDS_MAX_PENDING_ASC', - ThresholdsMaxPendingDesc = 'THRESHOLDS_MAX_PENDING_DESC', - ThresholdsMaxSessionIdAsc = 'THRESHOLDS_MAX_SESSION_ID_ASC', - ThresholdsMaxSessionIdDesc = 'THRESHOLDS_MAX_SESSION_ID_DESC', - ThresholdsMaxVariantAsc = 'THRESHOLDS_MAX_VARIANT_ASC', - ThresholdsMaxVariantDesc = 'THRESHOLDS_MAX_VARIANT_DESC', - ThresholdsMinCurrentAsc = 'THRESHOLDS_MIN_CURRENT_ASC', - ThresholdsMinCurrentDesc = 'THRESHOLDS_MIN_CURRENT_DESC', - ThresholdsMinIdAsc = 'THRESHOLDS_MIN_ID_ASC', - ThresholdsMinIdDesc = 'THRESHOLDS_MIN_ID_DESC', - ThresholdsMinNextAsc = 'THRESHOLDS_MIN_NEXT_ASC', - ThresholdsMinNextDesc = 'THRESHOLDS_MIN_NEXT_DESC', - ThresholdsMinPendingAsc = 'THRESHOLDS_MIN_PENDING_ASC', - ThresholdsMinPendingDesc = 'THRESHOLDS_MIN_PENDING_DESC', - ThresholdsMinSessionIdAsc = 'THRESHOLDS_MIN_SESSION_ID_ASC', - ThresholdsMinSessionIdDesc = 'THRESHOLDS_MIN_SESSION_ID_DESC', - ThresholdsMinVariantAsc = 'THRESHOLDS_MIN_VARIANT_ASC', - ThresholdsMinVariantDesc = 'THRESHOLDS_MIN_VARIANT_DESC', - ThresholdsStddevPopulationCurrentAsc = 'THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC', - ThresholdsStddevPopulationCurrentDesc = 'THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC', - ThresholdsStddevPopulationIdAsc = 'THRESHOLDS_STDDEV_POPULATION_ID_ASC', - ThresholdsStddevPopulationIdDesc = 'THRESHOLDS_STDDEV_POPULATION_ID_DESC', - ThresholdsStddevPopulationNextAsc = 'THRESHOLDS_STDDEV_POPULATION_NEXT_ASC', - ThresholdsStddevPopulationNextDesc = 'THRESHOLDS_STDDEV_POPULATION_NEXT_DESC', - ThresholdsStddevPopulationPendingAsc = 'THRESHOLDS_STDDEV_POPULATION_PENDING_ASC', - ThresholdsStddevPopulationPendingDesc = 'THRESHOLDS_STDDEV_POPULATION_PENDING_DESC', - ThresholdsStddevPopulationSessionIdAsc = 'THRESHOLDS_STDDEV_POPULATION_SESSION_ID_ASC', - ThresholdsStddevPopulationSessionIdDesc = 'THRESHOLDS_STDDEV_POPULATION_SESSION_ID_DESC', - ThresholdsStddevPopulationVariantAsc = 'THRESHOLDS_STDDEV_POPULATION_VARIANT_ASC', - ThresholdsStddevPopulationVariantDesc = 'THRESHOLDS_STDDEV_POPULATION_VARIANT_DESC', - ThresholdsStddevSampleCurrentAsc = 'THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC', - ThresholdsStddevSampleCurrentDesc = 'THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC', - ThresholdsStddevSampleIdAsc = 'THRESHOLDS_STDDEV_SAMPLE_ID_ASC', - ThresholdsStddevSampleIdDesc = 'THRESHOLDS_STDDEV_SAMPLE_ID_DESC', - ThresholdsStddevSampleNextAsc = 'THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC', - ThresholdsStddevSampleNextDesc = 'THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC', - ThresholdsStddevSamplePendingAsc = 'THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC', - ThresholdsStddevSamplePendingDesc = 'THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC', - ThresholdsStddevSampleSessionIdAsc = 'THRESHOLDS_STDDEV_SAMPLE_SESSION_ID_ASC', - ThresholdsStddevSampleSessionIdDesc = 'THRESHOLDS_STDDEV_SAMPLE_SESSION_ID_DESC', - ThresholdsStddevSampleVariantAsc = 'THRESHOLDS_STDDEV_SAMPLE_VARIANT_ASC', - ThresholdsStddevSampleVariantDesc = 'THRESHOLDS_STDDEV_SAMPLE_VARIANT_DESC', - ThresholdsSumCurrentAsc = 'THRESHOLDS_SUM_CURRENT_ASC', - ThresholdsSumCurrentDesc = 'THRESHOLDS_SUM_CURRENT_DESC', - ThresholdsSumIdAsc = 'THRESHOLDS_SUM_ID_ASC', - ThresholdsSumIdDesc = 'THRESHOLDS_SUM_ID_DESC', - ThresholdsSumNextAsc = 'THRESHOLDS_SUM_NEXT_ASC', - ThresholdsSumNextDesc = 'THRESHOLDS_SUM_NEXT_DESC', - ThresholdsSumPendingAsc = 'THRESHOLDS_SUM_PENDING_ASC', - ThresholdsSumPendingDesc = 'THRESHOLDS_SUM_PENDING_DESC', - ThresholdsSumSessionIdAsc = 'THRESHOLDS_SUM_SESSION_ID_ASC', - ThresholdsSumSessionIdDesc = 'THRESHOLDS_SUM_SESSION_ID_DESC', - ThresholdsSumVariantAsc = 'THRESHOLDS_SUM_VARIANT_ASC', - ThresholdsSumVariantDesc = 'THRESHOLDS_SUM_VARIANT_DESC', - ThresholdsVariancePopulationCurrentAsc = 'THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC', - ThresholdsVariancePopulationCurrentDesc = 'THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC', - ThresholdsVariancePopulationIdAsc = 'THRESHOLDS_VARIANCE_POPULATION_ID_ASC', - ThresholdsVariancePopulationIdDesc = 'THRESHOLDS_VARIANCE_POPULATION_ID_DESC', - ThresholdsVariancePopulationNextAsc = 'THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC', - ThresholdsVariancePopulationNextDesc = 'THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC', - ThresholdsVariancePopulationPendingAsc = 'THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC', - ThresholdsVariancePopulationPendingDesc = 'THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC', - ThresholdsVariancePopulationSessionIdAsc = 'THRESHOLDS_VARIANCE_POPULATION_SESSION_ID_ASC', - ThresholdsVariancePopulationSessionIdDesc = 'THRESHOLDS_VARIANCE_POPULATION_SESSION_ID_DESC', - ThresholdsVariancePopulationVariantAsc = 'THRESHOLDS_VARIANCE_POPULATION_VARIANT_ASC', - ThresholdsVariancePopulationVariantDesc = 'THRESHOLDS_VARIANCE_POPULATION_VARIANT_DESC', - ThresholdsVarianceSampleCurrentAsc = 'THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC', - ThresholdsVarianceSampleCurrentDesc = 'THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC', - ThresholdsVarianceSampleIdAsc = 'THRESHOLDS_VARIANCE_SAMPLE_ID_ASC', - ThresholdsVarianceSampleIdDesc = 'THRESHOLDS_VARIANCE_SAMPLE_ID_DESC', - ThresholdsVarianceSampleNextAsc = 'THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC', - ThresholdsVarianceSampleNextDesc = 'THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC', - ThresholdsVarianceSamplePendingAsc = 'THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC', - ThresholdsVarianceSamplePendingDesc = 'THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC', - ThresholdsVarianceSampleSessionIdAsc = 'THRESHOLDS_VARIANCE_SAMPLE_SESSION_ID_ASC', - ThresholdsVarianceSampleSessionIdDesc = 'THRESHOLDS_VARIANCE_SAMPLE_SESSION_ID_DESC', - ThresholdsVarianceSampleVariantAsc = 'THRESHOLDS_VARIANCE_SAMPLE_VARIANT_ASC', - ThresholdsVarianceSampleVariantDesc = 'THRESHOLDS_VARIANCE_SAMPLE_VARIANT_DESC', -} - -export type SignatureThreshold = Node & { - __typename?: 'SignatureThreshold'; - /** Reads a single `Block` that is related to this `SignatureThreshold`. */ - block?: Maybe; - blockId: Scalars['String']; - current?: Maybe; - id: Scalars['String']; - next?: Maybe; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - pending?: Maybe; -}; - -export type SignatureThresholdAggregates = { - __typename?: 'SignatureThresholdAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type SignatureThresholdAverageAggregates = { - __typename?: 'SignatureThresholdAverageAggregates'; - /** Mean average of current across the matching connection */ - current?: Maybe; - /** Mean average of next across the matching connection */ - next?: Maybe; - /** Mean average of pending across the matching connection */ - pending?: Maybe; -}; - -export type SignatureThresholdDistinctCountAggregates = { - __typename?: 'SignatureThresholdDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of current across the matching connection */ - current?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of next across the matching connection */ - next?: Maybe; - /** Distinct count of pending across the matching connection */ - pending?: Maybe; -}; - -/** A filter to be used against `SignatureThreshold` object types. All fields are combined with a logical ‘and.’ */ -export type SignatureThresholdFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `current` field. */ - current?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `next` field. */ - next?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `pending` field. */ - pending?: InputMaybe; -}; - -export type SignatureThresholdMaxAggregates = { - __typename?: 'SignatureThresholdMaxAggregates'; - /** Maximum of current across the matching connection */ - current?: Maybe; - /** Maximum of next across the matching connection */ - next?: Maybe; - /** Maximum of pending across the matching connection */ - pending?: Maybe; -}; - -export type SignatureThresholdMinAggregates = { - __typename?: 'SignatureThresholdMinAggregates'; - /** Minimum of current across the matching connection */ - current?: Maybe; - /** Minimum of next across the matching connection */ - next?: Maybe; - /** Minimum of pending across the matching connection */ - pending?: Maybe; -}; - -export type SignatureThresholdStddevPopulationAggregates = { - __typename?: 'SignatureThresholdStddevPopulationAggregates'; - /** Population standard deviation of current across the matching connection */ - current?: Maybe; - /** Population standard deviation of next across the matching connection */ - next?: Maybe; - /** Population standard deviation of pending across the matching connection */ - pending?: Maybe; -}; - -export type SignatureThresholdStddevSampleAggregates = { - __typename?: 'SignatureThresholdStddevSampleAggregates'; - /** Sample standard deviation of current across the matching connection */ - current?: Maybe; - /** Sample standard deviation of next across the matching connection */ - next?: Maybe; - /** Sample standard deviation of pending across the matching connection */ - pending?: Maybe; -}; - -export type SignatureThresholdSumAggregates = { - __typename?: 'SignatureThresholdSumAggregates'; - /** Sum of current across the matching connection */ - current: Scalars['BigInt']; - /** Sum of next across the matching connection */ - next: Scalars['BigInt']; - /** Sum of pending across the matching connection */ - pending: Scalars['BigInt']; -}; - -export type SignatureThresholdVariancePopulationAggregates = { - __typename?: 'SignatureThresholdVariancePopulationAggregates'; - /** Population variance of current across the matching connection */ - current?: Maybe; - /** Population variance of next across the matching connection */ - next?: Maybe; - /** Population variance of pending across the matching connection */ - pending?: Maybe; -}; - -export type SignatureThresholdVarianceSampleAggregates = { - __typename?: 'SignatureThresholdVarianceSampleAggregates'; - /** Sample variance of current across the matching connection */ - current?: Maybe; - /** Sample variance of next across the matching connection */ - next?: Maybe; - /** Sample variance of pending across the matching connection */ - pending?: Maybe; -}; - -/** A connection to a list of `SignatureThreshold` values. */ -export type SignatureThresholdsConnection = { - __typename?: 'SignatureThresholdsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `SignatureThreshold` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `SignatureThreshold` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `SignatureThreshold` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `SignatureThreshold` values. */ -export type SignatureThresholdsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `SignatureThreshold` edge in the connection. */ -export type SignatureThresholdsEdge = { - __typename?: 'SignatureThresholdsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `SignatureThreshold` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `SignatureThreshold` for usage during aggregation. */ -export enum SignatureThresholdsGroupBy { - BlockId = 'BLOCK_ID', - Current = 'CURRENT', - Next = 'NEXT', - Pending = 'PENDING', -} - -export type SignatureThresholdsHavingAverageInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingDistinctCountInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -/** Conditions for `SignatureThreshold` aggregates. */ -export type SignatureThresholdsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type SignatureThresholdsHavingMaxInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingMinInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingStddevPopulationInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingStddevSampleInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingSumInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingVariancePopulationInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type SignatureThresholdsHavingVarianceSampleInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -/** Methods to use when ordering `SignatureThreshold`. */ -export enum SignatureThresholdsOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - CurrentAsc = 'CURRENT_ASC', - CurrentDesc = 'CURRENT_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - NextAsc = 'NEXT_ASC', - NextDesc = 'NEXT_DESC', - PendingAsc = 'PENDING_ASC', - PendingDesc = 'PENDING_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', -} - -export type SourceState = Node & { - __typename?: 'SourceState'; - heartBeatCounters: Scalars['JSON']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - numberOfSessions: Scalars['Int']; -}; - -export type SourceStateAggregates = { - __typename?: 'SourceStateAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type SourceStateAverageAggregates = { - __typename?: 'SourceStateAverageAggregates'; - /** Mean average of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -export type SourceStateDistinctCountAggregates = { - __typename?: 'SourceStateDistinctCountAggregates'; - /** Distinct count of heartBeatCounters across the matching connection */ - heartBeatCounters?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -/** A filter to be used against `SourceState` object types. All fields are combined with a logical ‘and.’ */ -export type SourceStateFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `heartBeatCounters` field. */ - heartBeatCounters?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Filter by the object’s `numberOfSessions` field. */ - numberOfSessions?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; -}; - -export type SourceStateMaxAggregates = { - __typename?: 'SourceStateMaxAggregates'; - /** Maximum of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -export type SourceStateMinAggregates = { - __typename?: 'SourceStateMinAggregates'; - /** Minimum of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -export type SourceStateStddevPopulationAggregates = { - __typename?: 'SourceStateStddevPopulationAggregates'; - /** Population standard deviation of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -export type SourceStateStddevSampleAggregates = { - __typename?: 'SourceStateStddevSampleAggregates'; - /** Sample standard deviation of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -export type SourceStateSumAggregates = { - __typename?: 'SourceStateSumAggregates'; - /** Sum of numberOfSessions across the matching connection */ - numberOfSessions: Scalars['BigInt']; -}; - -export type SourceStateVariancePopulationAggregates = { - __typename?: 'SourceStateVariancePopulationAggregates'; - /** Population variance of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -export type SourceStateVarianceSampleAggregates = { - __typename?: 'SourceStateVarianceSampleAggregates'; - /** Sample variance of numberOfSessions across the matching connection */ - numberOfSessions?: Maybe; -}; - -/** A connection to a list of `SourceState` values. */ -export type SourceStatesConnection = { - __typename?: 'SourceStatesConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `SourceState` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `SourceState` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `SourceState` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `SourceState` values. */ -export type SourceStatesConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `SourceState` edge in the connection. */ -export type SourceStatesEdge = { - __typename?: 'SourceStatesEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `SourceState` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `SourceState` for usage during aggregation. */ -export enum SourceStatesGroupBy { - HeartBeatCounters = 'HEART_BEAT_COUNTERS', - NumberOfSessions = 'NUMBER_OF_SESSIONS', -} - -export type SourceStatesHavingAverageInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingDistinctCountInput = { - numberOfSessions?: InputMaybe; -}; - -/** Conditions for `SourceState` aggregates. */ -export type SourceStatesHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type SourceStatesHavingMaxInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingMinInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingStddevPopulationInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingStddevSampleInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingSumInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingVariancePopulationInput = { - numberOfSessions?: InputMaybe; -}; - -export type SourceStatesHavingVarianceSampleInput = { - numberOfSessions?: InputMaybe; -}; - -/** Methods to use when ordering `SourceState`. */ -export enum SourceStatesOrderBy { - HeartBeatCountersAsc = 'HEART_BEAT_COUNTERS_ASC', - HeartBeatCountersDesc = 'HEART_BEAT_COUNTERS_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - NumberOfSessionsAsc = 'NUMBER_OF_SESSIONS_ASC', - NumberOfSessionsDesc = 'NUMBER_OF_SESSIONS_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', -} - -/** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */ -export type StringFilter = { - /** Not equal to the specified value, treating null like an ordinary value. */ - distinctFrom?: InputMaybe; - /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */ - distinctFromInsensitive?: InputMaybe; - /** Ends with the specified string (case-sensitive). */ - endsWith?: InputMaybe; - /** Ends with the specified string (case-insensitive). */ - endsWithInsensitive?: InputMaybe; - /** Equal to the specified value. */ - equalTo?: InputMaybe; - /** Equal to the specified value (case-insensitive). */ - equalToInsensitive?: InputMaybe; - /** Greater than the specified value. */ - greaterThan?: InputMaybe; - /** Greater than the specified value (case-insensitive). */ - greaterThanInsensitive?: InputMaybe; - /** Greater than or equal to the specified value. */ - greaterThanOrEqualTo?: InputMaybe; - /** Greater than or equal to the specified value (case-insensitive). */ - greaterThanOrEqualToInsensitive?: InputMaybe; - /** Included in the specified list. */ - in?: InputMaybe>; - /** Included in the specified list (case-insensitive). */ - inInsensitive?: InputMaybe>; - /** Contains the specified string (case-sensitive). */ - includes?: InputMaybe; - /** Contains the specified string (case-insensitive). */ - includesInsensitive?: InputMaybe; - /** Is null (if `true` is specified) or is not null (if `false` is specified). */ - isNull?: InputMaybe; - /** Less than the specified value. */ - lessThan?: InputMaybe; - /** Less than the specified value (case-insensitive). */ - lessThanInsensitive?: InputMaybe; - /** Less than or equal to the specified value. */ - lessThanOrEqualTo?: InputMaybe; - /** Less than or equal to the specified value (case-insensitive). */ - lessThanOrEqualToInsensitive?: InputMaybe; - /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ - like?: InputMaybe; - /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ - likeInsensitive?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value. */ - notDistinctFrom?: InputMaybe; - /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */ - notDistinctFromInsensitive?: InputMaybe; - /** Does not end with the specified string (case-sensitive). */ - notEndsWith?: InputMaybe; - /** Does not end with the specified string (case-insensitive). */ - notEndsWithInsensitive?: InputMaybe; - /** Not equal to the specified value. */ - notEqualTo?: InputMaybe; - /** Not equal to the specified value (case-insensitive). */ - notEqualToInsensitive?: InputMaybe; - /** Not included in the specified list. */ - notIn?: InputMaybe>; - /** Not included in the specified list (case-insensitive). */ - notInInsensitive?: InputMaybe>; - /** Does not contain the specified string (case-sensitive). */ - notIncludes?: InputMaybe; - /** Does not contain the specified string (case-insensitive). */ - notIncludesInsensitive?: InputMaybe; - /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ - notLike?: InputMaybe; - /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ - notLikeInsensitive?: InputMaybe; - /** Does not start with the specified string (case-sensitive). */ - notStartsWith?: InputMaybe; - /** Does not start with the specified string (case-insensitive). */ - notStartsWithInsensitive?: InputMaybe; - /** Starts with the specified string (case-sensitive). */ - startsWith?: InputMaybe; - /** Starts with the specified string (case-insensitive). */ - startsWithInsensitive?: InputMaybe; -}; - -export type TableEstimate = { - __typename?: 'TableEstimate'; - estimate?: Maybe; - table?: Maybe; -}; - -export type Threshold = Node & { - __typename?: 'Threshold'; - current: Scalars['Int']; - id: Scalars['String']; - next: Scalars['Int']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - pending: Scalars['Int']; - /** Reads a single `Session` that is related to this `Threshold`. */ - session?: Maybe; - sessionId: Scalars['String']; - variant: AppEnum790A3Fe4Ce; -}; - -export type ThresholdAggregates = { - __typename?: 'ThresholdAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type ThresholdAverageAggregates = { - __typename?: 'ThresholdAverageAggregates'; - /** Mean average of current across the matching connection */ - current?: Maybe; - /** Mean average of next across the matching connection */ - next?: Maybe; - /** Mean average of pending across the matching connection */ - pending?: Maybe; -}; - -export type ThresholdDistinctCountAggregates = { - __typename?: 'ThresholdDistinctCountAggregates'; - /** Distinct count of current across the matching connection */ - current?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of next across the matching connection */ - next?: Maybe; - /** Distinct count of pending across the matching connection */ - pending?: Maybe; - /** Distinct count of sessionId across the matching connection */ - sessionId?: Maybe; - /** Distinct count of variant across the matching connection */ - variant?: Maybe; -}; - -/** A filter to be used against `Threshold` object types. All fields are combined with a logical ‘and.’ */ -export type ThresholdFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `current` field. */ - current?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Filter by the object’s `next` field. */ - next?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `pending` field. */ - pending?: InputMaybe; - /** Filter by the object’s `sessionId` field. */ - sessionId?: InputMaybe; - /** Filter by the object’s `variant` field. */ - variant?: InputMaybe; -}; - -export type ThresholdMaxAggregates = { - __typename?: 'ThresholdMaxAggregates'; - /** Maximum of current across the matching connection */ - current?: Maybe; - /** Maximum of next across the matching connection */ - next?: Maybe; - /** Maximum of pending across the matching connection */ - pending?: Maybe; -}; - -export type ThresholdMinAggregates = { - __typename?: 'ThresholdMinAggregates'; - /** Minimum of current across the matching connection */ - current?: Maybe; - /** Minimum of next across the matching connection */ - next?: Maybe; - /** Minimum of pending across the matching connection */ - pending?: Maybe; -}; - -export type ThresholdStddevPopulationAggregates = { - __typename?: 'ThresholdStddevPopulationAggregates'; - /** Population standard deviation of current across the matching connection */ - current?: Maybe; - /** Population standard deviation of next across the matching connection */ - next?: Maybe; - /** Population standard deviation of pending across the matching connection */ - pending?: Maybe; -}; - -export type ThresholdStddevSampleAggregates = { - __typename?: 'ThresholdStddevSampleAggregates'; - /** Sample standard deviation of current across the matching connection */ - current?: Maybe; - /** Sample standard deviation of next across the matching connection */ - next?: Maybe; - /** Sample standard deviation of pending across the matching connection */ - pending?: Maybe; -}; - -export type ThresholdSumAggregates = { - __typename?: 'ThresholdSumAggregates'; - /** Sum of current across the matching connection */ - current: Scalars['BigInt']; - /** Sum of next across the matching connection */ - next: Scalars['BigInt']; - /** Sum of pending across the matching connection */ - pending: Scalars['BigInt']; -}; - -export type ThresholdVariancePopulationAggregates = { - __typename?: 'ThresholdVariancePopulationAggregates'; - /** Population variance of current across the matching connection */ - current?: Maybe; - /** Population variance of next across the matching connection */ - next?: Maybe; - /** Population variance of pending across the matching connection */ - pending?: Maybe; -}; - -export type ThresholdVarianceSampleAggregates = { - __typename?: 'ThresholdVarianceSampleAggregates'; - /** Sample variance of current across the matching connection */ - current?: Maybe; - /** Sample variance of next across the matching connection */ - next?: Maybe; - /** Sample variance of pending across the matching connection */ - pending?: Maybe; -}; - -/** A connection to a list of `Threshold` values. */ -export type ThresholdsConnection = { - __typename?: 'ThresholdsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Threshold` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Threshold` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Threshold` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Threshold` values. */ -export type ThresholdsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Threshold` edge in the connection. */ -export type ThresholdsEdge = { - __typename?: 'ThresholdsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Threshold` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Threshold` for usage during aggregation. */ -export enum ThresholdsGroupBy { - Current = 'CURRENT', - Next = 'NEXT', - Pending = 'PENDING', - SessionId = 'SESSION_ID', - Variant = 'VARIANT', -} - -export type ThresholdsHavingAverageInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingDistinctCountInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -/** Conditions for `Threshold` aggregates. */ -export type ThresholdsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type ThresholdsHavingMaxInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingMinInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingStddevPopulationInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingStddevSampleInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingSumInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingVariancePopulationInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -export type ThresholdsHavingVarianceSampleInput = { - current?: InputMaybe; - next?: InputMaybe; - pending?: InputMaybe; -}; - -/** Methods to use when ordering `Threshold`. */ -export enum ThresholdsOrderBy { - CurrentAsc = 'CURRENT_ASC', - CurrentDesc = 'CURRENT_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - NextAsc = 'NEXT_ASC', - NextDesc = 'NEXT_DESC', - PendingAsc = 'PENDING_ASC', - PendingDesc = 'PENDING_DESC', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SessionIdAsc = 'SESSION_ID_ASC', - SessionIdDesc = 'SESSION_ID_DESC', - VariantAsc = 'VARIANT_ASC', - VariantDesc = 'VARIANT_DESC', -} - -export type UnsignedProposalsQueue = Node & { - __typename?: 'UnsignedProposalsQueue'; - /** Reads a single `Block` that is related to this `UnsignedProposalsQueue`. */ - block?: Maybe; - blockId: Scalars['String']; - blockNumber: Scalars['Int']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads and enables pagination through a set of `ProposalItem`. */ - proposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalId: UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection; - /** Reads and enables pagination through a set of `UnsignedProposalsQueueItem`. */ - unsignedProposalsQueueItemsByQueueId: UnsignedProposalsQueueItemsConnection; -}; - -export type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type UnsignedProposalsQueueUnsignedProposalsQueueItemsByQueueIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type UnsignedProposalsQueueAggregates = { - __typename?: 'UnsignedProposalsQueueAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type UnsignedProposalsQueueAverageAggregates = { - __typename?: 'UnsignedProposalsQueueAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueDistinctCountAggregates = { - __typename?: 'UnsignedProposalsQueueDistinctCountAggregates'; - /** Distinct count of blockId across the matching connection */ - blockId?: Maybe; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; -}; - -/** A filter to be used against `UnsignedProposalsQueue` object types. All fields are combined with a logical ‘and.’ */ -export type UnsignedProposalsQueueFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockId` field. */ - blockId?: InputMaybe; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; -}; - -export type UnsignedProposalsQueueItem = Node & { - __typename?: 'UnsignedProposalsQueueItem'; - blockNumber: Scalars['Int']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads a single `ProposalItem` that is related to this `UnsignedProposalsQueueItem`. */ - proposal?: Maybe; - proposalId: Scalars['String']; - /** Reads a single `UnsignedProposalsQueue` that is related to this `UnsignedProposalsQueueItem`. */ - queue?: Maybe; - queueId: Scalars['String']; -}; - -export type UnsignedProposalsQueueItemAggregates = { - __typename?: 'UnsignedProposalsQueueItemAggregates'; - /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ - average?: Maybe; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; - /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - max?: Maybe; - /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - min?: Maybe; - /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevPopulation?: Maybe; - /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ - stddevSample?: Maybe; - /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ - sum?: Maybe; - /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - variancePopulation?: Maybe; - /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ - varianceSample?: Maybe; -}; - -export type UnsignedProposalsQueueItemAverageAggregates = { - __typename?: 'UnsignedProposalsQueueItemAverageAggregates'; - /** Mean average of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueItemDistinctCountAggregates = { - __typename?: 'UnsignedProposalsQueueItemDistinctCountAggregates'; - /** Distinct count of blockNumber across the matching connection */ - blockNumber?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; - /** Distinct count of proposalId across the matching connection */ - proposalId?: Maybe; - /** Distinct count of queueId across the matching connection */ - queueId?: Maybe; -}; - -/** A filter to be used against `UnsignedProposalsQueueItem` object types. All fields are combined with a logical ‘and.’ */ -export type UnsignedProposalsQueueItemFilter = { - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `blockNumber` field. */ - blockNumber?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; - /** Filter by the object’s `proposalId` field. */ - proposalId?: InputMaybe; - /** Filter by the object’s `queueId` field. */ - queueId?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemMaxAggregates = { - __typename?: 'UnsignedProposalsQueueItemMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueItemMinAggregates = { - __typename?: 'UnsignedProposalsQueueItemMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueItemStddevPopulationAggregates = { - __typename?: 'UnsignedProposalsQueueItemStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueItemStddevSampleAggregates = { - __typename?: 'UnsignedProposalsQueueItemStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueItemSumAggregates = { - __typename?: 'UnsignedProposalsQueueItemSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigInt']; -}; - -export type UnsignedProposalsQueueItemVariancePopulationAggregates = { - __typename?: 'UnsignedProposalsQueueItemVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueItemVarianceSampleAggregates = { - __typename?: 'UnsignedProposalsQueueItemVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `UnsignedProposalsQueueItem` values. */ -export type UnsignedProposalsQueueItemsConnection = { - __typename?: 'UnsignedProposalsQueueItemsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `UnsignedProposalsQueueItem` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `UnsignedProposalsQueueItem` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `UnsignedProposalsQueueItem` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `UnsignedProposalsQueueItem` values. */ -export type UnsignedProposalsQueueItemsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `UnsignedProposalsQueueItem` edge in the connection. */ -export type UnsignedProposalsQueueItemsEdge = { - __typename?: 'UnsignedProposalsQueueItemsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `UnsignedProposalsQueueItem` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `UnsignedProposalsQueueItem` for usage during aggregation. */ -export enum UnsignedProposalsQueueItemsGroupBy { - BlockNumber = 'BLOCK_NUMBER', - ProposalId = 'PROPOSAL_ID', - QueueId = 'QUEUE_ID', -} - -export type UnsignedProposalsQueueItemsHavingAverageInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingDistinctCountInput = { - blockNumber?: InputMaybe; -}; - -/** Conditions for `UnsignedProposalsQueueItem` aggregates. */ -export type UnsignedProposalsQueueItemsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingMaxInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingMinInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingStddevPopulationInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingStddevSampleInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingSumInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingVariancePopulationInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueueItemsHavingVarianceSampleInput = { - blockNumber?: InputMaybe; -}; - -/** Methods to use when ordering `UnsignedProposalsQueueItem`. */ -export enum UnsignedProposalsQueueItemsOrderBy { - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - ProposalIdAsc = 'PROPOSAL_ID_ASC', - ProposalIdDesc = 'PROPOSAL_ID_DESC', - QueueIdAsc = 'QUEUE_ID_ASC', - QueueIdDesc = 'QUEUE_ID_DESC', -} - -export type UnsignedProposalsQueueMaxAggregates = { - __typename?: 'UnsignedProposalsQueueMaxAggregates'; - /** Maximum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueMinAggregates = { - __typename?: 'UnsignedProposalsQueueMinAggregates'; - /** Minimum of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `ProposalItem` values, with data from `UnsignedProposalsQueueItem`. */ -export type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection = - { - __typename?: 'UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `ProposalItem`, info from the `UnsignedProposalsQueueItem`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `ProposalItem` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `ProposalItem` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `ProposalItem` values, with data from `UnsignedProposalsQueueItem`. */ -export type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `ProposalItem` edge in the connection, with data from `UnsignedProposalsQueueItem`. */ -export type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdge = - { - __typename?: 'UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `ProposalItem` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `UnsignedProposalsQueueItem`. */ - unsignedProposalsQueueItemsByProposalId: UnsignedProposalsQueueItemsConnection; - }; - -/** A `ProposalItem` edge in the connection, with data from `UnsignedProposalsQueueItem`. */ -export type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdgeUnsignedProposalsQueueItemsByProposalIdArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe< - Array> - >; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -export type UnsignedProposalsQueueStddevPopulationAggregates = { - __typename?: 'UnsignedProposalsQueueStddevPopulationAggregates'; - /** Population standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueStddevSampleAggregates = { - __typename?: 'UnsignedProposalsQueueStddevSampleAggregates'; - /** Sample standard deviation of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueSumAggregates = { - __typename?: 'UnsignedProposalsQueueSumAggregates'; - /** Sum of blockNumber across the matching connection */ - blockNumber: Scalars['BigInt']; -}; - -export type UnsignedProposalsQueueVariancePopulationAggregates = { - __typename?: 'UnsignedProposalsQueueVariancePopulationAggregates'; - /** Population variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -export type UnsignedProposalsQueueVarianceSampleAggregates = { - __typename?: 'UnsignedProposalsQueueVarianceSampleAggregates'; - /** Sample variance of blockNumber across the matching connection */ - blockNumber?: Maybe; -}; - -/** A connection to a list of `UnsignedProposalsQueue` values. */ -export type UnsignedProposalsQueuesConnection = { - __typename?: 'UnsignedProposalsQueuesConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `UnsignedProposalsQueue` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `UnsignedProposalsQueue` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `UnsignedProposalsQueue` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `UnsignedProposalsQueue` values. */ -export type UnsignedProposalsQueuesConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `UnsignedProposalsQueue` edge in the connection. */ -export type UnsignedProposalsQueuesEdge = { - __typename?: 'UnsignedProposalsQueuesEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `UnsignedProposalsQueue` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `UnsignedProposalsQueue` for usage during aggregation. */ -export enum UnsignedProposalsQueuesGroupBy { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', -} - -export type UnsignedProposalsQueuesHavingAverageInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingDistinctCountInput = { - blockNumber?: InputMaybe; -}; - -/** Conditions for `UnsignedProposalsQueue` aggregates. */ -export type UnsignedProposalsQueuesHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - average?: InputMaybe; - distinctCount?: InputMaybe; - max?: InputMaybe; - min?: InputMaybe; - stddevPopulation?: InputMaybe; - stddevSample?: InputMaybe; - sum?: InputMaybe; - variancePopulation?: InputMaybe; - varianceSample?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingMaxInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingMinInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingStddevPopulationInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingStddevSampleInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingSumInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingVariancePopulationInput = { - blockNumber?: InputMaybe; -}; - -export type UnsignedProposalsQueuesHavingVarianceSampleInput = { - blockNumber?: InputMaybe; -}; - -/** Methods to use when ordering `UnsignedProposalsQueue`. */ -export enum UnsignedProposalsQueuesOrderBy { - BlockIdAsc = 'BLOCK_ID_ASC', - BlockIdDesc = 'BLOCK_ID_DESC', - BlockNumberAsc = 'BLOCK_NUMBER_ASC', - BlockNumberDesc = 'BLOCK_NUMBER_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - UnsignedProposalsQueueItemsByQueueIdAverageBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdAverageBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdAverageIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdAverageIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdAverageProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdAverageProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdAverageQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdAverageQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdCountAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_COUNT_ASC', - UnsignedProposalsQueueItemsByQueueIdCountDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_COUNT_DESC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdDistinctCountQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdMaxBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdMaxBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdMaxIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdMaxIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdMaxProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdMaxProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdMaxQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdMaxQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdMinBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdMinBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdMinIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdMinIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdMinProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdMinProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdMinQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdMinQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevPopulationQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdStddevSampleQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdSumBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdSumBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdSumIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdSumIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdSumProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdSumProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdSumQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdSumQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdVariancePopulationQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_QUEUE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleBlockNumberAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleBlockNumberDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleProposalIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleProposalIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleQueueIdAsc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_QUEUE_ID_ASC', - UnsignedProposalsQueueItemsByQueueIdVarianceSampleQueueIdDesc = 'UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_QUEUE_ID_DESC', -} - -export type Validator = Node & { - __typename?: 'Validator'; - /** Reads a single `Account` that is related to this `Validator`. */ - account?: Maybe; - accountId: Scalars['String']; - authorityId: Scalars['String']; - id: Scalars['String']; - /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ - nodeId: Scalars['ID']; - /** Reads and enables pagination through a set of `SessionValidator`. */ - sessionValidators: SessionValidatorsConnection; - /** Reads and enables pagination through a set of `Session`. */ - sessionsBySessionValidatorValidatorIdAndSessionId: ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection; -}; - -export type ValidatorSessionValidatorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdArgs = { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; -}; - -export type ValidatorAggregates = { - __typename?: 'ValidatorAggregates'; - /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ - distinctCount?: Maybe; - keys?: Maybe>; -}; - -export type ValidatorDistinctCountAggregates = { - __typename?: 'ValidatorDistinctCountAggregates'; - /** Distinct count of accountId across the matching connection */ - accountId?: Maybe; - /** Distinct count of authorityId across the matching connection */ - authorityId?: Maybe; - /** Distinct count of id across the matching connection */ - id?: Maybe; -}; - -/** A filter to be used against `Validator` object types. All fields are combined with a logical ‘and.’ */ -export type ValidatorFilter = { - /** Filter by the object’s `accountId` field. */ - accountId?: InputMaybe; - /** Checks for all expressions in this list. */ - and?: InputMaybe>; - /** Filter by the object’s `authorityId` field. */ - authorityId?: InputMaybe; - /** Filter by the object’s `id` field. */ - id?: InputMaybe; - /** Negates the expression. */ - not?: InputMaybe; - /** Checks for any expressions in this list. */ - or?: InputMaybe>; -}; - -/** A connection to a list of `Session` values, with data from `SessionValidator`. */ -export type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection = - { - __typename?: 'ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Session`, info from the `SessionValidator`, and the cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Session` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Session` you could get from the connection. */ - totalCount: Scalars['Int']; - }; - -/** A connection to a list of `Session` values, with data from `SessionValidator`. */ -export type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnectionGroupedAggregatesArgs = - { - groupBy: Array; - having?: InputMaybe; - }; - -/** A `Session` edge in the connection, with data from `SessionValidator`. */ -export type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdge = - { - __typename?: 'ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Session` at the end of the edge. */ - node?: Maybe; - /** Reads and enables pagination through a set of `SessionValidator`. */ - sessionValidators: SessionValidatorsConnection; - }; - -/** A `Session` edge in the connection, with data from `SessionValidator`. */ -export type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdgeSessionValidatorsArgs = - { - after?: InputMaybe; - before?: InputMaybe; - distinct?: InputMaybe>>; - filter?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - offset?: InputMaybe; - orderBy?: InputMaybe>; - }; - -/** A connection to a list of `Validator` values. */ -export type ValidatorsConnection = { - __typename?: 'ValidatorsConnection'; - /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ - aggregates?: Maybe; - /** A list of edges which contains the `Validator` and cursor to aid in pagination. */ - edges: Array; - /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ - groupedAggregates?: Maybe>; - /** A list of `Validator` objects. */ - nodes: Array>; - /** Information to aid in pagination. */ - pageInfo: PageInfo; - /** The count of *all* `Validator` you could get from the connection. */ - totalCount: Scalars['Int']; -}; - -/** A connection to a list of `Validator` values. */ -export type ValidatorsConnectionGroupedAggregatesArgs = { - groupBy: Array; - having?: InputMaybe; -}; - -/** A `Validator` edge in the connection. */ -export type ValidatorsEdge = { - __typename?: 'ValidatorsEdge'; - /** A cursor for use in pagination. */ - cursor?: Maybe; - /** The `Validator` at the end of the edge. */ - node?: Maybe; -}; - -/** Grouping methods for `Validator` for usage during aggregation. */ -export enum ValidatorsGroupBy { - AccountId = 'ACCOUNT_ID', -} - -/** Conditions for `Validator` aggregates. */ -export type ValidatorsHavingInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; -}; - -/** Methods to use when ordering `Validator`. */ -export enum ValidatorsOrderBy { - AccountIdAsc = 'ACCOUNT_ID_ASC', - AccountIdDesc = 'ACCOUNT_ID_DESC', - AuthorityIdAsc = 'AUTHORITY_ID_ASC', - AuthorityIdDesc = 'AUTHORITY_ID_DESC', - IdAsc = 'ID_ASC', - IdDesc = 'ID_DESC', - Natural = 'NATURAL', - PrimaryKeyAsc = 'PRIMARY_KEY_ASC', - PrimaryKeyDesc = 'PRIMARY_KEY_DESC', - SessionValidatorsAverageBestOrderAsc = 'SESSION_VALIDATORS_AVERAGE_BEST_ORDER_ASC', - SessionValidatorsAverageBestOrderDesc = 'SESSION_VALIDATORS_AVERAGE_BEST_ORDER_DESC', - SessionValidatorsAverageBlockNumberAsc = 'SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_ASC', - SessionValidatorsAverageBlockNumberDesc = 'SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_DESC', - SessionValidatorsAverageIdAsc = 'SESSION_VALIDATORS_AVERAGE_ID_ASC', - SessionValidatorsAverageIdDesc = 'SESSION_VALIDATORS_AVERAGE_ID_DESC', - SessionValidatorsAverageIsBestAsc = 'SESSION_VALIDATORS_AVERAGE_IS_BEST_ASC', - SessionValidatorsAverageIsBestDesc = 'SESSION_VALIDATORS_AVERAGE_IS_BEST_DESC', - SessionValidatorsAverageIsNextAsc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_ASC', - SessionValidatorsAverageIsNextBestAsc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_ASC', - SessionValidatorsAverageIsNextBestDesc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_DESC', - SessionValidatorsAverageIsNextDesc = 'SESSION_VALIDATORS_AVERAGE_IS_NEXT_DESC', - SessionValidatorsAverageNextBestOrderAsc = 'SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_ASC', - SessionValidatorsAverageNextBestOrderDesc = 'SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_DESC', - SessionValidatorsAverageReputationAsc = 'SESSION_VALIDATORS_AVERAGE_REPUTATION_ASC', - SessionValidatorsAverageReputationDesc = 'SESSION_VALIDATORS_AVERAGE_REPUTATION_DESC', - SessionValidatorsAverageSessionIdAsc = 'SESSION_VALIDATORS_AVERAGE_SESSION_ID_ASC', - SessionValidatorsAverageSessionIdDesc = 'SESSION_VALIDATORS_AVERAGE_SESSION_ID_DESC', - SessionValidatorsAverageUptimeAsc = 'SESSION_VALIDATORS_AVERAGE_UPTIME_ASC', - SessionValidatorsAverageUptimeDesc = 'SESSION_VALIDATORS_AVERAGE_UPTIME_DESC', - SessionValidatorsAverageValidatorIdAsc = 'SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_ASC', - SessionValidatorsAverageValidatorIdDesc = 'SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_DESC', - SessionValidatorsCountAsc = 'SESSION_VALIDATORS_COUNT_ASC', - SessionValidatorsCountDesc = 'SESSION_VALIDATORS_COUNT_DESC', - SessionValidatorsDistinctCountBestOrderAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_ASC', - SessionValidatorsDistinctCountBestOrderDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_DESC', - SessionValidatorsDistinctCountBlockNumberAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_ASC', - SessionValidatorsDistinctCountBlockNumberDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_DESC', - SessionValidatorsDistinctCountIdAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_ID_ASC', - SessionValidatorsDistinctCountIdDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_ID_DESC', - SessionValidatorsDistinctCountIsBestAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_ASC', - SessionValidatorsDistinctCountIsBestDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_DESC', - SessionValidatorsDistinctCountIsNextAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_ASC', - SessionValidatorsDistinctCountIsNextBestAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_ASC', - SessionValidatorsDistinctCountIsNextBestDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_DESC', - SessionValidatorsDistinctCountIsNextDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_DESC', - SessionValidatorsDistinctCountNextBestOrderAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_ASC', - SessionValidatorsDistinctCountNextBestOrderDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_DESC', - SessionValidatorsDistinctCountReputationAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_ASC', - SessionValidatorsDistinctCountReputationDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_DESC', - SessionValidatorsDistinctCountSessionIdAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_ASC', - SessionValidatorsDistinctCountSessionIdDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_DESC', - SessionValidatorsDistinctCountUptimeAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_ASC', - SessionValidatorsDistinctCountUptimeDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_DESC', - SessionValidatorsDistinctCountValidatorIdAsc = 'SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_ASC', - SessionValidatorsDistinctCountValidatorIdDesc = 'SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_DESC', - SessionValidatorsMaxBestOrderAsc = 'SESSION_VALIDATORS_MAX_BEST_ORDER_ASC', - SessionValidatorsMaxBestOrderDesc = 'SESSION_VALIDATORS_MAX_BEST_ORDER_DESC', - SessionValidatorsMaxBlockNumberAsc = 'SESSION_VALIDATORS_MAX_BLOCK_NUMBER_ASC', - SessionValidatorsMaxBlockNumberDesc = 'SESSION_VALIDATORS_MAX_BLOCK_NUMBER_DESC', - SessionValidatorsMaxIdAsc = 'SESSION_VALIDATORS_MAX_ID_ASC', - SessionValidatorsMaxIdDesc = 'SESSION_VALIDATORS_MAX_ID_DESC', - SessionValidatorsMaxIsBestAsc = 'SESSION_VALIDATORS_MAX_IS_BEST_ASC', - SessionValidatorsMaxIsBestDesc = 'SESSION_VALIDATORS_MAX_IS_BEST_DESC', - SessionValidatorsMaxIsNextAsc = 'SESSION_VALIDATORS_MAX_IS_NEXT_ASC', - SessionValidatorsMaxIsNextBestAsc = 'SESSION_VALIDATORS_MAX_IS_NEXT_BEST_ASC', - SessionValidatorsMaxIsNextBestDesc = 'SESSION_VALIDATORS_MAX_IS_NEXT_BEST_DESC', - SessionValidatorsMaxIsNextDesc = 'SESSION_VALIDATORS_MAX_IS_NEXT_DESC', - SessionValidatorsMaxNextBestOrderAsc = 'SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_ASC', - SessionValidatorsMaxNextBestOrderDesc = 'SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_DESC', - SessionValidatorsMaxReputationAsc = 'SESSION_VALIDATORS_MAX_REPUTATION_ASC', - SessionValidatorsMaxReputationDesc = 'SESSION_VALIDATORS_MAX_REPUTATION_DESC', - SessionValidatorsMaxSessionIdAsc = 'SESSION_VALIDATORS_MAX_SESSION_ID_ASC', - SessionValidatorsMaxSessionIdDesc = 'SESSION_VALIDATORS_MAX_SESSION_ID_DESC', - SessionValidatorsMaxUptimeAsc = 'SESSION_VALIDATORS_MAX_UPTIME_ASC', - SessionValidatorsMaxUptimeDesc = 'SESSION_VALIDATORS_MAX_UPTIME_DESC', - SessionValidatorsMaxValidatorIdAsc = 'SESSION_VALIDATORS_MAX_VALIDATOR_ID_ASC', - SessionValidatorsMaxValidatorIdDesc = 'SESSION_VALIDATORS_MAX_VALIDATOR_ID_DESC', - SessionValidatorsMinBestOrderAsc = 'SESSION_VALIDATORS_MIN_BEST_ORDER_ASC', - SessionValidatorsMinBestOrderDesc = 'SESSION_VALIDATORS_MIN_BEST_ORDER_DESC', - SessionValidatorsMinBlockNumberAsc = 'SESSION_VALIDATORS_MIN_BLOCK_NUMBER_ASC', - SessionValidatorsMinBlockNumberDesc = 'SESSION_VALIDATORS_MIN_BLOCK_NUMBER_DESC', - SessionValidatorsMinIdAsc = 'SESSION_VALIDATORS_MIN_ID_ASC', - SessionValidatorsMinIdDesc = 'SESSION_VALIDATORS_MIN_ID_DESC', - SessionValidatorsMinIsBestAsc = 'SESSION_VALIDATORS_MIN_IS_BEST_ASC', - SessionValidatorsMinIsBestDesc = 'SESSION_VALIDATORS_MIN_IS_BEST_DESC', - SessionValidatorsMinIsNextAsc = 'SESSION_VALIDATORS_MIN_IS_NEXT_ASC', - SessionValidatorsMinIsNextBestAsc = 'SESSION_VALIDATORS_MIN_IS_NEXT_BEST_ASC', - SessionValidatorsMinIsNextBestDesc = 'SESSION_VALIDATORS_MIN_IS_NEXT_BEST_DESC', - SessionValidatorsMinIsNextDesc = 'SESSION_VALIDATORS_MIN_IS_NEXT_DESC', - SessionValidatorsMinNextBestOrderAsc = 'SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_ASC', - SessionValidatorsMinNextBestOrderDesc = 'SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_DESC', - SessionValidatorsMinReputationAsc = 'SESSION_VALIDATORS_MIN_REPUTATION_ASC', - SessionValidatorsMinReputationDesc = 'SESSION_VALIDATORS_MIN_REPUTATION_DESC', - SessionValidatorsMinSessionIdAsc = 'SESSION_VALIDATORS_MIN_SESSION_ID_ASC', - SessionValidatorsMinSessionIdDesc = 'SESSION_VALIDATORS_MIN_SESSION_ID_DESC', - SessionValidatorsMinUptimeAsc = 'SESSION_VALIDATORS_MIN_UPTIME_ASC', - SessionValidatorsMinUptimeDesc = 'SESSION_VALIDATORS_MIN_UPTIME_DESC', - SessionValidatorsMinValidatorIdAsc = 'SESSION_VALIDATORS_MIN_VALIDATOR_ID_ASC', - SessionValidatorsMinValidatorIdDesc = 'SESSION_VALIDATORS_MIN_VALIDATOR_ID_DESC', - SessionValidatorsStddevPopulationBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_ASC', - SessionValidatorsStddevPopulationBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_DESC', - SessionValidatorsStddevPopulationBlockNumberAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_ASC', - SessionValidatorsStddevPopulationBlockNumberDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_DESC', - SessionValidatorsStddevPopulationIdAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_ID_ASC', - SessionValidatorsStddevPopulationIdDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_ID_DESC', - SessionValidatorsStddevPopulationIsBestAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_ASC', - SessionValidatorsStddevPopulationIsBestDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_DESC', - SessionValidatorsStddevPopulationIsNextAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_ASC', - SessionValidatorsStddevPopulationIsNextBestAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_ASC', - SessionValidatorsStddevPopulationIsNextBestDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_DESC', - SessionValidatorsStddevPopulationIsNextDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_DESC', - SessionValidatorsStddevPopulationNextBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_ASC', - SessionValidatorsStddevPopulationNextBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_DESC', - SessionValidatorsStddevPopulationReputationAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_ASC', - SessionValidatorsStddevPopulationReputationDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_DESC', - SessionValidatorsStddevPopulationSessionIdAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_ASC', - SessionValidatorsStddevPopulationSessionIdDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_DESC', - SessionValidatorsStddevPopulationUptimeAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_ASC', - SessionValidatorsStddevPopulationUptimeDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_DESC', - SessionValidatorsStddevPopulationValidatorIdAsc = 'SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_ASC', - SessionValidatorsStddevPopulationValidatorIdDesc = 'SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_DESC', - SessionValidatorsStddevSampleBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_ASC', - SessionValidatorsStddevSampleBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_DESC', - SessionValidatorsStddevSampleBlockNumberAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC', - SessionValidatorsStddevSampleBlockNumberDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC', - SessionValidatorsStddevSampleIdAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_ID_ASC', - SessionValidatorsStddevSampleIdDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_ID_DESC', - SessionValidatorsStddevSampleIsBestAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_ASC', - SessionValidatorsStddevSampleIsBestDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_DESC', - SessionValidatorsStddevSampleIsNextAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_ASC', - SessionValidatorsStddevSampleIsNextBestAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_ASC', - SessionValidatorsStddevSampleIsNextBestDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_DESC', - SessionValidatorsStddevSampleIsNextDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_DESC', - SessionValidatorsStddevSampleNextBestOrderAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_ASC', - SessionValidatorsStddevSampleNextBestOrderDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_DESC', - SessionValidatorsStddevSampleReputationAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_ASC', - SessionValidatorsStddevSampleReputationDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_DESC', - SessionValidatorsStddevSampleSessionIdAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_ASC', - SessionValidatorsStddevSampleSessionIdDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_DESC', - SessionValidatorsStddevSampleUptimeAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_ASC', - SessionValidatorsStddevSampleUptimeDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_DESC', - SessionValidatorsStddevSampleValidatorIdAsc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_ASC', - SessionValidatorsStddevSampleValidatorIdDesc = 'SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_DESC', - SessionValidatorsSumBestOrderAsc = 'SESSION_VALIDATORS_SUM_BEST_ORDER_ASC', - SessionValidatorsSumBestOrderDesc = 'SESSION_VALIDATORS_SUM_BEST_ORDER_DESC', - SessionValidatorsSumBlockNumberAsc = 'SESSION_VALIDATORS_SUM_BLOCK_NUMBER_ASC', - SessionValidatorsSumBlockNumberDesc = 'SESSION_VALIDATORS_SUM_BLOCK_NUMBER_DESC', - SessionValidatorsSumIdAsc = 'SESSION_VALIDATORS_SUM_ID_ASC', - SessionValidatorsSumIdDesc = 'SESSION_VALIDATORS_SUM_ID_DESC', - SessionValidatorsSumIsBestAsc = 'SESSION_VALIDATORS_SUM_IS_BEST_ASC', - SessionValidatorsSumIsBestDesc = 'SESSION_VALIDATORS_SUM_IS_BEST_DESC', - SessionValidatorsSumIsNextAsc = 'SESSION_VALIDATORS_SUM_IS_NEXT_ASC', - SessionValidatorsSumIsNextBestAsc = 'SESSION_VALIDATORS_SUM_IS_NEXT_BEST_ASC', - SessionValidatorsSumIsNextBestDesc = 'SESSION_VALIDATORS_SUM_IS_NEXT_BEST_DESC', - SessionValidatorsSumIsNextDesc = 'SESSION_VALIDATORS_SUM_IS_NEXT_DESC', - SessionValidatorsSumNextBestOrderAsc = 'SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_ASC', - SessionValidatorsSumNextBestOrderDesc = 'SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_DESC', - SessionValidatorsSumReputationAsc = 'SESSION_VALIDATORS_SUM_REPUTATION_ASC', - SessionValidatorsSumReputationDesc = 'SESSION_VALIDATORS_SUM_REPUTATION_DESC', - SessionValidatorsSumSessionIdAsc = 'SESSION_VALIDATORS_SUM_SESSION_ID_ASC', - SessionValidatorsSumSessionIdDesc = 'SESSION_VALIDATORS_SUM_SESSION_ID_DESC', - SessionValidatorsSumUptimeAsc = 'SESSION_VALIDATORS_SUM_UPTIME_ASC', - SessionValidatorsSumUptimeDesc = 'SESSION_VALIDATORS_SUM_UPTIME_DESC', - SessionValidatorsSumValidatorIdAsc = 'SESSION_VALIDATORS_SUM_VALIDATOR_ID_ASC', - SessionValidatorsSumValidatorIdDesc = 'SESSION_VALIDATORS_SUM_VALIDATOR_ID_DESC', - SessionValidatorsVariancePopulationBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_ASC', - SessionValidatorsVariancePopulationBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_DESC', - SessionValidatorsVariancePopulationBlockNumberAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC', - SessionValidatorsVariancePopulationBlockNumberDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC', - SessionValidatorsVariancePopulationIdAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_ID_ASC', - SessionValidatorsVariancePopulationIdDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_ID_DESC', - SessionValidatorsVariancePopulationIsBestAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_ASC', - SessionValidatorsVariancePopulationIsBestDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_DESC', - SessionValidatorsVariancePopulationIsNextAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_ASC', - SessionValidatorsVariancePopulationIsNextBestAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_ASC', - SessionValidatorsVariancePopulationIsNextBestDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_DESC', - SessionValidatorsVariancePopulationIsNextDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_DESC', - SessionValidatorsVariancePopulationNextBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_ASC', - SessionValidatorsVariancePopulationNextBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_DESC', - SessionValidatorsVariancePopulationReputationAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_ASC', - SessionValidatorsVariancePopulationReputationDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_DESC', - SessionValidatorsVariancePopulationSessionIdAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_ASC', - SessionValidatorsVariancePopulationSessionIdDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_DESC', - SessionValidatorsVariancePopulationUptimeAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_ASC', - SessionValidatorsVariancePopulationUptimeDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_DESC', - SessionValidatorsVariancePopulationValidatorIdAsc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_ASC', - SessionValidatorsVariancePopulationValidatorIdDesc = 'SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_DESC', - SessionValidatorsVarianceSampleBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_ASC', - SessionValidatorsVarianceSampleBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_DESC', - SessionValidatorsVarianceSampleBlockNumberAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC', - SessionValidatorsVarianceSampleBlockNumberDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC', - SessionValidatorsVarianceSampleIdAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_ASC', - SessionValidatorsVarianceSampleIdDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_DESC', - SessionValidatorsVarianceSampleIsBestAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_ASC', - SessionValidatorsVarianceSampleIsBestDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_DESC', - SessionValidatorsVarianceSampleIsNextAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_ASC', - SessionValidatorsVarianceSampleIsNextBestAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_ASC', - SessionValidatorsVarianceSampleIsNextBestDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_DESC', - SessionValidatorsVarianceSampleIsNextDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_DESC', - SessionValidatorsVarianceSampleNextBestOrderAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_ASC', - SessionValidatorsVarianceSampleNextBestOrderDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_DESC', - SessionValidatorsVarianceSampleReputationAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_ASC', - SessionValidatorsVarianceSampleReputationDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_DESC', - SessionValidatorsVarianceSampleSessionIdAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_ASC', - SessionValidatorsVarianceSampleSessionIdDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_DESC', - SessionValidatorsVarianceSampleUptimeAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_ASC', - SessionValidatorsVarianceSampleUptimeDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_DESC', - SessionValidatorsVarianceSampleValidatorIdAsc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_ASC', - SessionValidatorsVarianceSampleValidatorIdDesc = 'SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_DESC', -} - -export type _Metadata = { - __typename?: '_Metadata'; - chain?: Maybe; - dynamicDatasources?: Maybe; - genesisHash?: Maybe; - indexerHealthy?: Maybe; - indexerNodeVersion?: Maybe; - lastProcessedHeight?: Maybe; - lastProcessedTimestamp?: Maybe; - queryNodeVersion?: Maybe; - rowCountEstimate?: Maybe>>; - specName?: Maybe; - targetHeight?: Maybe; -}; - -export enum Accounts_Distinct_Enum { - CountryCodeId = 'COUNTRY_CODE_ID', - CreatedAt = 'CREATED_AT', - CreateAtBlockId = 'CREATE_AT_BLOCK_ID', - CreatorId = 'CREATOR_ID', - Display = 'DISPLAY', - Email = 'EMAIL', - Id = 'ID', - Image = 'IMAGE', - Legal = 'LEGAL', - PgpFingerprint = 'PGP_FINGERPRINT', - Riot = 'RIOT', - Twitter = 'TWITTER', - Web = 'WEB', -} - -export enum Authorities_Distinct_Enum { - BlockId = 'BLOCK_ID', - Current = 'CURRENT', - Id = 'ID', - Next = 'NEXT', -} - -export enum Blocks_Distinct_Enum { - ExtrinsicsRoot = 'EXTRINSICS_ROOT', - Hash = 'HASH', - Id = 'ID', - Number = 'NUMBER', - ParentHash = 'PARENT_HASH', - SpecVersion = 'SPEC_VERSION', - StateRoot = 'STATE_ROOT', - Timestamp = 'TIMESTAMP', -} - -export enum Country_Codes_Distinct_Enum { - Code = 'CODE', - Id = 'ID', -} - -export enum Events_Distinct_Enum { - Arguments = 'ARGUMENTS', - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Data = 'DATA', - Docs = 'DOCS', - ExtrinsicId = 'EXTRINSIC_ID', - Id = 'ID', - Index = 'INDEX', - Method = 'METHOD', - Module = 'MODULE', - Timestamp = 'TIMESTAMP', -} - -export enum Extrinsics_Distinct_Enum { - Arguments = 'ARGUMENTS', - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Hash = 'HASH', - Id = 'ID', - Index = 'INDEX', - IsSigned = 'IS_SIGNED', - IsSuccess = 'IS_SUCCESS', - Method = 'METHOD', - Module = 'MODULE', - SignerId = 'SIGNER_ID', -} - -export enum Heart_Beats_Distinct_Enum { - AccountId = 'ACCOUNT_ID', - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - SessionId = 'SESSION_ID', -} - -export enum Keygen_Thresholds_Distinct_Enum { - BlockId = 'BLOCK_ID', - Current = 'CURRENT', - Id = 'ID', - Next = 'NEXT', - Pending = 'PENDING', -} - -export enum Proposal_Counters_Distinct_Enum { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - SignedProposalsCount = 'SIGNED_PROPOSALS_COUNT', - SignedProposalsMap = 'SIGNED_PROPOSALS_MAP', - StatusMap = 'STATUS_MAP', - UnSignedProposalsCount = 'UN_SIGNED_PROPOSALS_COUNT', - UnSignedProposalsMap = 'UN_SIGNED_PROPOSALS_MAP', -} - -export enum Proposal_Items_Distinct_Enum { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - ChainId = 'CHAIN_ID', - Data = 'DATA', - Id = 'ID', - Nonce = 'NONCE', - Removed = 'REMOVED', - Signature = 'SIGNATURE', - Status = 'STATUS', - Type = 'TYPE', -} - -export enum Proposal_Timeline_Statuses_Distinct_Enum { - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - ProposalItemId = 'PROPOSAL_ITEM_ID', - Status = 'STATUS', - Timestamp = 'TIMESTAMP', - TxHash = 'TX_HASH', -} - -export enum Proposal_Votes_Distinct_Enum { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - ProposalId = 'PROPOSAL_ID', - VoterId = 'VOTER_ID', - VoteStatus = 'VOTE_STATUS', -} - -export enum Proposer_Thresholds_Distinct_Enum { - BlockId = 'BLOCK_ID', - Id = 'ID', - Value = 'VALUE', -} - -export enum Proposers_Distinct_Enum { - AccountId = 'ACCOUNT_ID', - Id = 'ID', -} - -export enum Public_Keys_Distinct_Enum { - BlockId = 'BLOCK_ID', - Compressed = 'COMPRESSED', - History = 'HISTORY', - Id = 'ID', - Uncompressed = 'UNCOMPRESSED', -} - -export enum Session_Proposers_Distinct_Enum { - Id = 'ID', - ProposerId = 'PROPOSER_ID', - SessionId = 'SESSION_ID', -} - -export enum Session_Validators_Distinct_Enum { - BestOrder = 'BEST_ORDER', - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - IsBest = 'IS_BEST', - IsNext = 'IS_NEXT', - IsNextBest = 'IS_NEXT_BEST', - NextBestOrder = 'NEXT_BEST_ORDER', - Reputation = 'REPUTATION', - SessionId = 'SESSION_ID', - Uptime = 'UPTIME', - ValidatorId = 'VALIDATOR_ID', -} - -export enum Sessions_Distinct_Enum { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - PublicKeyId = 'PUBLIC_KEY_ID', -} - -export enum Signature_Thresholds_Distinct_Enum { - BlockId = 'BLOCK_ID', - Current = 'CURRENT', - Id = 'ID', - Next = 'NEXT', - Pending = 'PENDING', -} - -export enum Source_States_Distinct_Enum { - HeartBeatCounters = 'HEART_BEAT_COUNTERS', - Id = 'ID', - NumberOfSessions = 'NUMBER_OF_SESSIONS', -} - -export enum Thresholds_Distinct_Enum { - Current = 'CURRENT', - Id = 'ID', - Next = 'NEXT', - Pending = 'PENDING', - SessionId = 'SESSION_ID', - Variant = 'VARIANT', -} - -export enum Unsigned_Proposals_Queue_Items_Distinct_Enum { - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', - ProposalId = 'PROPOSAL_ID', - QueueId = 'QUEUE_ID', -} - -export enum Unsigned_Proposals_Queues_Distinct_Enum { - BlockId = 'BLOCK_ID', - BlockNumber = 'BLOCK_NUMBER', - Id = 'ID', -} - -export enum Validators_Distinct_Enum { - AccountId = 'ACCOUNT_ID', - AuthorityId = 'AUTHORITY_ID', - Id = 'ID', -} - -export type ValidatorListingQueryVariables = Exact<{ - sessionId: Scalars['String']; - perPage: Scalars['Int']; - offset: Scalars['Int']; - uptimeFilter?: InputMaybe; - reputationFilter?: InputMaybe; - validatorId?: InputMaybe; -}>; - -export type ValidatorListingQuery = { - __typename?: 'Query'; - sessionValidators?: { - __typename?: 'SessionValidatorsConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - }; - } | null; -}; - -export type ValidatorSessionsQueryVariables = Exact<{ - keyGen?: InputMaybe; - validatorId: Scalars['String']; - perPage: Scalars['Int']; - offset: Scalars['Int']; -}>; - -export type ValidatorSessionsQuery = { - __typename?: 'Query'; - sessionValidators?: { - __typename?: 'SessionValidatorsConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'SessionValidator'; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - session?: { - __typename?: 'Session'; - id: string; - publicKey?: { - __typename?: 'PublicKey'; - id: string; - compressed?: string | null; - uncompressed?: string | null; - block?: { __typename?: 'Block'; id: string; number: any } | null; - } | null; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - totalCount: number; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; - } | null; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - }; - } | null; -}; - -export type ValidatorOfSessionQueryVariables = Exact<{ - validatorId: Scalars['String']; - sessionValidatorId: Scalars['String']; -}>; - -export type ValidatorOfSessionQuery = { - __typename?: 'Query'; - sessionValidator?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - session?: { - __typename?: 'Session'; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - } | null; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - sessionValidators?: { - __typename?: 'SessionValidatorsConnection'; - aggregates?: { - __typename?: 'SessionValidatorAggregates'; - distinctCount?: { - __typename?: 'SessionValidatorDistinctCountAggregates'; - id?: any | null; - } | null; - } | null; - } | null; -}; - -export type AccountMetaDataFragment = { - __typename?: 'Account'; - id: string; - twitter?: string | null; - email?: string | null; - web?: string | null; - legal?: string | null; - pgpFingerprint?: string | null; - riot?: string | null; - countryCode?: { __typename?: 'CountryCode'; id: string; code: string } | null; -}; - -export type AccountMetaDataQueryVariables = Exact<{ - accountId: Scalars['String']; -}>; - -export type AccountMetaDataQuery = { - __typename?: 'Query'; - account?: { - __typename?: 'Account'; - id: string; - twitter?: string | null; - email?: string | null; - web?: string | null; - legal?: string | null; - pgpFingerprint?: string | null; - riot?: string | null; - countryCode?: { - __typename?: 'CountryCode'; - id: string; - code: string; - } | null; - } | null; -}; - -export type ValidatorMetaFragment = { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; -}; - -export type PageInfoMetaFragment = { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; -}; - -export type SessionAuthValidatorNodeFragment = { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; -}; - -export type SessionAuthValidatorFragment = { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; -}; - -export type ThresholdValueElementFragment = { - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; -}; - -export type ThresholdValueFragment = { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; -}; - -export type SessionAuthFragment = { - __typename?: 'Session'; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; -}; - -export type ProposalListViewFragment = { - __typename?: 'ProposalItem'; - id: string; - data: string; - signature?: string | null; - type: AppEnumB6165934C8; - status: string; - chainId?: any | null; - proposalVotesByProposalId: { - __typename?: 'ProposalVotesConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'ProposalVote'; - id: string; - voterId: string; - voter?: { __typename?: 'Proposer'; id: string } | null; - } | null>; - }; - block?: { __typename?: 'Block'; timestamp?: any | null; number: any } | null; -}; - -export type ProposalsVoteListViewFragment = { - __typename?: 'ProposalVote'; - id: string; - voterId: string; - voteStatus: AppEnumFe385C7221; - txHash: string; - block?: { __typename?: 'Block'; timestamp?: any | null; number: any } | null; -}; - -export type MetaDataQueryVariables = Exact<{ [key: string]: never }>; - -export type MetaDataQuery = { - __typename?: 'Query'; - sessions?: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - blockNumber: number; - } | null>; - } | null; - _metadata?: { - __typename?: '_Metadata'; - targetHeight?: number | null; - lastProcessedHeight?: number | null; - } | null; -}; - -export type LastBlockQueryVariables = Exact<{ [key: string]: never }>; - -export type LastBlockQuery = { - __typename?: 'Query'; - blocks?: { - __typename?: 'BlocksConnection'; - nodes: Array<{ - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null>; - } | null; -}; - -export type CountriesQueryVariables = Exact<{ [key: string]: never }>; - -export type CountriesQuery = { - __typename?: 'Query'; - countryCodes?: { - __typename?: 'CountryCodesConnection'; - nodes: Array<{ - __typename?: 'CountryCode'; - code: string; - id: string; - } | null>; - } | null; -}; - -export type ProposalCounterQueryVariables = Exact<{ [key: string]: never }>; - -export type ProposalCounterQuery = { - __typename?: 'Query'; - proposalCounters?: { - __typename?: 'ProposalCountersConnection'; - nodes: Array<{ - __typename?: 'ProposalCounter'; - id: string; - blockNumber: number; - unSignedProposalsCount: number; - signedProposalsCount: number; - statusMap?: any | null; - unSignedProposalsMap?: any | null; - signedProposalsMap?: any | null; - } | null>; - } | null; -}; - -export type ProposalsQueryVariables = Exact<{ - perPage: Scalars['Int']; - offset: Scalars['Int']; - filter?: InputMaybe; -}>; - -export type ProposalsQuery = { - __typename?: 'Query'; - proposalItems?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'ProposalItem'; - id: string; - data: string; - signature?: string | null; - type: AppEnumB6165934C8; - status: string; - chainId?: any | null; - proposalVotesByProposalId: { - __typename?: 'ProposalVotesConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'ProposalVote'; - id: string; - voterId: string; - voter?: { __typename?: 'Proposer'; id: string } | null; - } | null>; - }; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - }; - } | null; -}; - -export type ProposalsCounterQueryVariables = Exact<{ - id: Scalars['String']; -}>; - -export type ProposalsCounterQuery = { - __typename?: 'Query'; - proposalCounter?: { - __typename?: 'ProposalCounter'; - id: string; - signedProposalsMap?: any | null; - unSignedProposalsMap?: any | null; - signedProposalsCount: number; - unSignedProposalsCount: number; - statusMap?: any | null; - block?: { - __typename?: 'Block'; - number: any; - timestamp?: any | null; - } | null; - } | null; -}; - -export type ProposalsOverviewQueryVariables = Exact<{ - startRange?: InputMaybe; - endRange?: InputMaybe; - sessionId: Scalars['String']; -}>; - -export type ProposalsOverviewQuery = { - __typename?: 'Query'; - session?: { - __typename?: 'Session'; - id: string; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - sessionProposers: { - __typename?: 'SessionProposersConnection'; - totalCount: number; - }; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - totalCount: number; - }; - } | null; - openProposals?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'ProposalItem'; - id: string; - data: string; - signature?: string | null; - type: AppEnumB6165934C8; - status: string; - chainId?: any | null; - proposalVotesByProposalId: { - __typename?: 'ProposalVotesConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'ProposalVote'; - id: string; - voterId: string; - voter?: { __typename?: 'Proposer'; id: string } | null; - } | null>; - }; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - }; - } | null; - open?: { - __typename?: 'ProposalTimelineStatusesConnection'; - totalCount: number; - } | null; - signed?: { - __typename?: 'ProposalTimelineStatusesConnection'; - totalCount: number; - } | null; - reject?: { - __typename?: 'ProposalTimelineStatusesConnection'; - totalCount: number; - } | null; - accepted?: { - __typename?: 'ProposalTimelineStatusesConnection'; - totalCount: number; - } | null; -}; - -export type ProposalVotesQueryVariables = Exact<{ - perPage: Scalars['Int']; - offset: Scalars['Int']; - proposalId: Scalars['String']; - for?: InputMaybe; -}>; - -export type ProposalVotesQuery = { - __typename?: 'Query'; - proposalVotes?: { - __typename?: 'ProposalVotesConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'ProposalVote'; - id: string; - voterId: string; - voteStatus: AppEnumFe385C7221; - txHash: string; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - }; - } | null; -}; - -export type ProposalDetailsQueryVariables = Exact<{ - id: Scalars['String']; - targetSessionId: Scalars['String']; -}>; - -export type ProposalDetailsQuery = { - __typename?: 'Query'; - session?: { - __typename?: 'Session'; - id: string; - sessionProposers: { - __typename?: 'SessionProposersConnection'; - totalCount: number; - }; - } | null; - proposalItem?: { - __typename?: 'ProposalItem'; - id: string; - data: string; - signature?: string | null; - type: AppEnumB6165934C8; - status: string; - chainId?: any | null; - proposalTimelineStatuses: { - __typename?: 'ProposalTimelineStatusesConnection'; - nodes: Array<{ - __typename?: 'ProposalTimelineStatus'; - id: string; - blockNumber: any; - status: AppEnum155D64Ff70; - timestamp: any; - } | null>; - }; - votesFor: { __typename?: 'ProposalVotesConnection'; totalCount: number }; - against: { __typename?: 'ProposalVotesConnection'; totalCount: number }; - abstain: { __typename?: 'ProposalVotesConnection'; totalCount: number }; - totalVotes: { __typename?: 'ProposalVotesConnection'; totalCount: number }; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - } | null; -}; - -export type EnsureProposalsQueryVariables = Exact<{ - ids: Array | Scalars['String']; -}>; - -export type EnsureProposalsQuery = { - __typename?: 'Query'; - proposalItems?: { - __typename?: 'ProposalItemsConnection'; - nodes: Array<{ __typename?: 'ProposalItem'; id: string } | null>; - } | null; -}; - -export type ProposalsOvertimeTotalCountQueryVariables = Exact<{ - start: Scalars['Int']; - end: Scalars['Int']; -}>; - -export type ProposalsOvertimeTotalCountQuery = { - __typename?: 'Query'; - refreshVote?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - proposerSetUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - anchorCreateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - anchorUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - tokenAddProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - tokenRemoveProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - wrappingFeeUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - resourceIdUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - rescueTokensProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - maxDepositLimitUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - minWithdrawalLimitUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - setVerifierProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - setTreasuryHandlerProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; - feeRecipientUpdateProposal?: { - __typename?: 'ProposalItemsConnection'; - totalCount: number; - } | null; -}; - -export type PublicKeysQueryVariables = Exact<{ - PerPage?: InputMaybe; - offset?: InputMaybe; -}>; - -export type PublicKeysQuery = { - __typename?: 'Query'; - publicKeys?: { - __typename?: 'PublicKeysConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'PublicKey'; - id: string; - compressed?: string | null; - uncompressed?: string | null; - history: any; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - sessions: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; - } | null>; - }; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - endCursor?: any | null; - }; - } | null; -}; - -export type PublicKeyQueryVariables = Exact<{ - id: Scalars['String']; -}>; - -export type PublicKeyQuery = { - __typename?: 'Query'; - publicKey?: { - __typename?: 'PublicKey'; - id: string; - compressed?: string | null; - uncompressed?: string | null; - history: any; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - sessions: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; - } | null>; - }; - } | null; -}; - -export type SessionKeyIdsQueryVariables = Exact<{ - keys: Array | Scalars['String']; -}>; - -export type SessionKeyIdsQuery = { - __typename?: 'Query'; - sessions?: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - publicKey?: { __typename?: 'PublicKey'; id: string } | null; - } | null>; - } | null; -}; - -export type CurrentSessionAuthoritiesQueryVariables = Exact<{ - [key: string]: never; -}>; - -export type CurrentSessionAuthoritiesQuery = { - __typename?: 'Query'; - sessions?: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - blockId: string; - publicKey?: { - __typename?: 'PublicKey'; - compressed?: string | null; - } | null; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - block?: { - __typename?: 'Block'; - id: string; - timestamp?: any | null; - } | null; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; - } | null>; - } | null; -}; - -export type SessionKeysQueryVariables = Exact<{ - SessionId: Array | Scalars['String']; -}>; - -export type SessionKeysQuery = { - __typename?: 'Query'; - sessions?: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - publicKey?: { - __typename?: 'PublicKey'; - id: string; - compressed?: string | null; - uncompressed?: string | null; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - } | null; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; - } | null>; - } | null; -}; - -export type SessionThresholdHistoryQueryVariables = Exact<{ - offset: Scalars['Int']; - perPage: Scalars['Int']; -}>; - -export type SessionThresholdHistoryQuery = { - __typename?: 'Query'; - sessions?: { - __typename?: 'SessionsConnection'; - totalCount: number; - nodes: Array<{ - __typename?: 'Session'; - id: string; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - block?: { - __typename?: 'Block'; - id: string; - timestamp?: any | null; - } | null; - } | null>; - pageInfo: { - __typename?: 'PageInfo'; - endCursor?: any | null; - hasNextPage: boolean; - hasPreviousPage: boolean; - startCursor?: any | null; - }; - } | null; -}; - -export type SessionThresholdsQueryVariables = Exact<{ - sessionId: Scalars['String']; -}>; - -export type SessionThresholdsQuery = { - __typename?: 'Query'; - session?: { - __typename?: 'Session'; - id: string; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - proposersCount: { - __typename?: 'SessionProposersConnection'; - totalCount: number; - }; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - publicKey?: { - __typename?: 'PublicKey'; - id: string; - compressed?: string | null; - uncompressed?: string | null; - block?: { - __typename?: 'Block'; - timestamp?: any | null; - number: any; - } | null; - } | null; - sessionValidators: { - __typename?: 'SessionValidatorsConnection'; - edges: Array<{ - __typename?: 'SessionValidatorsEdge'; - node?: { - __typename?: 'SessionValidator'; - id: string; - sessionId: string; - reputation: number; - uptime: number; - isBest: boolean; - isNext: boolean; - isNextBest: boolean; - bestOrder: number; - nextBestOrder: number; - validator?: { - __typename?: 'Validator'; - authorityId: string; - id: string; - account?: { - __typename?: 'Account'; - id: string; - countryCodeId?: string | null; - } | null; - } | null; - } | null; - }>; - }; - } | null; -}; - -export type LatestThresholdsQueryVariables = Exact<{ - first?: InputMaybe; - filter?: InputMaybe; -}>; - -export type LatestThresholdsQuery = { - __typename?: 'Query'; - sessions?: { - __typename?: 'SessionsConnection'; - nodes: Array<{ - __typename?: 'Session'; - id: string; - thresholds: { - __typename?: 'ThresholdsConnection'; - nodes: Array<{ - __typename?: 'Threshold'; - next: number; - current: number; - pending: number; - variant: AppEnum790A3Fe4Ce; - } | null>; - }; - } | null>; - } | null; -}; - -export const AccountMetaDataFragmentDoc = gql` - fragment AccountMetaData on Account { - id - twitter - email - web - legal - countryCode { - id - code - } - pgpFingerprint - riot - } -`; -export const PageInfoMetaFragmentDoc = gql` - fragment PageInfoMeta on PageInfo { - endCursor - hasNextPage - hasPreviousPage - startCursor - } -`; -export const ThresholdValueElementFragmentDoc = gql` - fragment ThresholdValueElement on Threshold { - next - current - pending - variant - } -`; -export const ThresholdValueFragmentDoc = gql` - fragment ThresholdValue on ThresholdsConnection { - nodes { - ...ThresholdValueElement - } - } - ${ThresholdValueElementFragmentDoc} -`; -export const ValidatorMetaFragmentDoc = gql` - fragment ValidatorMeta on Validator { - authorityId - id - account { - id - countryCodeId - } - } -`; -export const SessionAuthValidatorNodeFragmentDoc = gql` - fragment SessionAuthValidatorNode on SessionValidator { - id - sessionId - validator { - ...ValidatorMeta - } - reputation - uptime - isBest - isNext - isNextBest - bestOrder - nextBestOrder - } - ${ValidatorMetaFragmentDoc} -`; -export const SessionAuthValidatorFragmentDoc = gql` - fragment SessionAuthValidator on SessionValidatorsConnection { - edges { - node { - ...SessionAuthValidatorNode - } - } - } - ${SessionAuthValidatorNodeFragmentDoc} -`; -export const SessionAuthFragmentDoc = gql` - fragment SessionAuth on Session { - sessionValidators { - ...SessionAuthValidator - } - } - ${SessionAuthValidatorFragmentDoc} -`; -export const ProposalListViewFragmentDoc = gql` - fragment ProposalListView on ProposalItem { - id - data - signature - type - status - chainId - proposalVotesByProposalId(orderBy: [BLOCK_NUMBER_DESC], first: 3) { - nodes { - id - voterId - voter { - id - } - } - totalCount - } - block { - timestamp - number - } - } -`; -export const ProposalsVoteListViewFragmentDoc = gql` - fragment ProposalsVoteListView on ProposalVote { - id - voterId - voteStatus - txHash: voterId - block { - timestamp - number - } - } -`; -export const ValidatorListingDocument = gql` - query ValidatorListing( - $sessionId: String! - $perPage: Int! - $offset: Int! - $uptimeFilter: IntFilter - $reputationFilter: IntFilter - $validatorId: StringFilter - ) { - sessionValidators( - orderBy: [BLOCK_NUMBER_DESC] - filter: { - validatorId: $validatorId - reputation: $reputationFilter - uptime: $uptimeFilter - sessionId: { equalTo: $sessionId } - } - offset: $offset - first: $perPage - ) { - nodes { - ...SessionAuthValidatorNode - validator { - ...ValidatorMeta - } - } - totalCount - pageInfo { - ...PageInfoMeta - } - } - } - ${SessionAuthValidatorNodeFragmentDoc} - ${ValidatorMetaFragmentDoc} - ${PageInfoMetaFragmentDoc} -`; - -/** - * __useValidatorListingQuery__ - * - * To run a query within a React component, call `useValidatorListingQuery` and pass it any options that fit your needs. - * When your component renders, `useValidatorListingQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useValidatorListingQuery({ - * variables: { - * sessionId: // value for 'sessionId' - * perPage: // value for 'perPage' - * offset: // value for 'offset' - * uptimeFilter: // value for 'uptimeFilter' - * reputationFilter: // value for 'reputationFilter' - * validatorId: // value for 'validatorId' - * }, - * }); - */ -export function useValidatorListingQuery( - baseOptions: Apollo.QueryHookOptions< - ValidatorListingQuery, - ValidatorListingQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - ValidatorListingDocument, - options - ); -} -export function useValidatorListingLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ValidatorListingQuery, - ValidatorListingQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ValidatorListingQuery, - ValidatorListingQueryVariables - >(ValidatorListingDocument, options); -} -export type ValidatorListingQueryHookResult = ReturnType< - typeof useValidatorListingQuery ->; -export type ValidatorListingLazyQueryHookResult = ReturnType< - typeof useValidatorListingLazyQuery ->; -export type ValidatorListingQueryResult = Apollo.QueryResult< - ValidatorListingQuery, - ValidatorListingQueryVariables ->; -export const ValidatorSessionsDocument = gql` - query ValidatorSessions( - $keyGen: Boolean - $validatorId: String! - $perPage: Int! - $offset: Int! - ) { - sessionValidators( - orderBy: [BLOCK_NUMBER_DESC] - filter: { - isBest: { equalTo: $keyGen } - validatorId: { equalTo: $validatorId } - } - offset: $offset - first: $perPage - ) { - nodes { - validator { - ...ValidatorMeta - } - session { - id - publicKey { - id - compressed - uncompressed - block { - id - number - } - } - sessionValidators(first: 3) { - ...SessionAuthValidator - totalCount - } - } - } - totalCount - pageInfo { - ...PageInfoMeta - } - } - } - ${ValidatorMetaFragmentDoc} - ${SessionAuthValidatorFragmentDoc} - ${PageInfoMetaFragmentDoc} -`; - -/** - * __useValidatorSessionsQuery__ - * - * To run a query within a React component, call `useValidatorSessionsQuery` and pass it any options that fit your needs. - * When your component renders, `useValidatorSessionsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useValidatorSessionsQuery({ - * variables: { - * keyGen: // value for 'keyGen' - * validatorId: // value for 'validatorId' - * perPage: // value for 'perPage' - * offset: // value for 'offset' - * }, - * }); - */ -export function useValidatorSessionsQuery( - baseOptions: Apollo.QueryHookOptions< - ValidatorSessionsQuery, - ValidatorSessionsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - ValidatorSessionsQuery, - ValidatorSessionsQueryVariables - >(ValidatorSessionsDocument, options); -} -export function useValidatorSessionsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ValidatorSessionsQuery, - ValidatorSessionsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ValidatorSessionsQuery, - ValidatorSessionsQueryVariables - >(ValidatorSessionsDocument, options); -} -export type ValidatorSessionsQueryHookResult = ReturnType< - typeof useValidatorSessionsQuery ->; -export type ValidatorSessionsLazyQueryHookResult = ReturnType< - typeof useValidatorSessionsLazyQuery ->; -export type ValidatorSessionsQueryResult = Apollo.QueryResult< - ValidatorSessionsQuery, - ValidatorSessionsQueryVariables ->; -export const ValidatorOfSessionDocument = gql` - query ValidatorOfSession( - $validatorId: String! - $sessionValidatorId: String! - ) { - sessionValidator(id: $sessionValidatorId) { - ...SessionAuthValidatorNode - session { - thresholds { - ...ThresholdValue - } - } - } - sessionValidators( - orderBy: [BLOCK_NUMBER_DESC] - filter: { - validatorId: { equalTo: $validatorId } - isBest: { equalTo: true } - } - ) { - aggregates { - distinctCount { - id - } - } - } - } - ${SessionAuthValidatorNodeFragmentDoc} - ${ThresholdValueFragmentDoc} -`; - -/** - * __useValidatorOfSessionQuery__ - * - * To run a query within a React component, call `useValidatorOfSessionQuery` and pass it any options that fit your needs. - * When your component renders, `useValidatorOfSessionQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useValidatorOfSessionQuery({ - * variables: { - * validatorId: // value for 'validatorId' - * sessionValidatorId: // value for 'sessionValidatorId' - * }, - * }); - */ -export function useValidatorOfSessionQuery( - baseOptions: Apollo.QueryHookOptions< - ValidatorOfSessionQuery, - ValidatorOfSessionQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - ValidatorOfSessionQuery, - ValidatorOfSessionQueryVariables - >(ValidatorOfSessionDocument, options); -} -export function useValidatorOfSessionLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ValidatorOfSessionQuery, - ValidatorOfSessionQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ValidatorOfSessionQuery, - ValidatorOfSessionQueryVariables - >(ValidatorOfSessionDocument, options); -} -export type ValidatorOfSessionQueryHookResult = ReturnType< - typeof useValidatorOfSessionQuery ->; -export type ValidatorOfSessionLazyQueryHookResult = ReturnType< - typeof useValidatorOfSessionLazyQuery ->; -export type ValidatorOfSessionQueryResult = Apollo.QueryResult< - ValidatorOfSessionQuery, - ValidatorOfSessionQueryVariables ->; -export const AccountMetaDataDocument = gql` - query AccountMetaData($accountId: String!) { - account(id: $accountId) { - ...AccountMetaData - } - } - ${AccountMetaDataFragmentDoc} -`; - -/** - * __useAccountMetaDataQuery__ - * - * To run a query within a React component, call `useAccountMetaDataQuery` and pass it any options that fit your needs. - * When your component renders, `useAccountMetaDataQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useAccountMetaDataQuery({ - * variables: { - * accountId: // value for 'accountId' - * }, - * }); - */ -export function useAccountMetaDataQuery( - baseOptions: Apollo.QueryHookOptions< - AccountMetaDataQuery, - AccountMetaDataQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - AccountMetaDataDocument, - options - ); -} -export function useAccountMetaDataLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - AccountMetaDataQuery, - AccountMetaDataQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - AccountMetaDataQuery, - AccountMetaDataQueryVariables - >(AccountMetaDataDocument, options); -} -export type AccountMetaDataQueryHookResult = ReturnType< - typeof useAccountMetaDataQuery ->; -export type AccountMetaDataLazyQueryHookResult = ReturnType< - typeof useAccountMetaDataLazyQuery ->; -export type AccountMetaDataQueryResult = Apollo.QueryResult< - AccountMetaDataQuery, - AccountMetaDataQueryVariables ->; -export const MetaDataDocument = gql` - query MetaData { - sessions( - first: 1 - orderBy: [BLOCK_NUMBER_DESC] - filter: { publicKeyId: { isNull: false } } - ) { - nodes { - id - blockNumber - } - } - _metadata { - targetHeight - lastProcessedHeight - } - } -`; - -/** - * __useMetaDataQuery__ - * - * To run a query within a React component, call `useMetaDataQuery` and pass it any options that fit your needs. - * When your component renders, `useMetaDataQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useMetaDataQuery({ - * variables: { - * }, - * }); - */ -export function useMetaDataQuery( - baseOptions?: Apollo.QueryHookOptions -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - MetaDataDocument, - options - ); -} -export function useMetaDataLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - MetaDataQuery, - MetaDataQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - MetaDataDocument, - options - ); -} -export type MetaDataQueryHookResult = ReturnType; -export type MetaDataLazyQueryHookResult = ReturnType< - typeof useMetaDataLazyQuery ->; -export type MetaDataQueryResult = Apollo.QueryResult< - MetaDataQuery, - MetaDataQueryVariables ->; -export const LastBlockDocument = gql` - query LastBlock { - blocks( - first: 1 - filter: { timestamp: { isNull: false } } - orderBy: [NUMBER_DESC] - ) { - nodes { - timestamp - number - } - } - } -`; - -/** - * __useLastBlockQuery__ - * - * To run a query within a React component, call `useLastBlockQuery` and pass it any options that fit your needs. - * When your component renders, `useLastBlockQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useLastBlockQuery({ - * variables: { - * }, - * }); - */ -export function useLastBlockQuery( - baseOptions?: Apollo.QueryHookOptions -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - LastBlockDocument, - options - ); -} -export function useLastBlockLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - LastBlockQuery, - LastBlockQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - LastBlockDocument, - options - ); -} -export type LastBlockQueryHookResult = ReturnType; -export type LastBlockLazyQueryHookResult = ReturnType< - typeof useLastBlockLazyQuery ->; -export type LastBlockQueryResult = Apollo.QueryResult< - LastBlockQuery, - LastBlockQueryVariables ->; -export const CountriesDocument = gql` - query countries { - countryCodes { - nodes { - code - id - } - } - } -`; - -/** - * __useCountriesQuery__ - * - * To run a query within a React component, call `useCountriesQuery` and pass it any options that fit your needs. - * When your component renders, `useCountriesQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useCountriesQuery({ - * variables: { - * }, - * }); - */ -export function useCountriesQuery( - baseOptions?: Apollo.QueryHookOptions -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - CountriesDocument, - options - ); -} -export function useCountriesLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - CountriesQuery, - CountriesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - CountriesDocument, - options - ); -} -export type CountriesQueryHookResult = ReturnType; -export type CountriesLazyQueryHookResult = ReturnType< - typeof useCountriesLazyQuery ->; -export type CountriesQueryResult = Apollo.QueryResult< - CountriesQuery, - CountriesQueryVariables ->; -export const ProposalCounterDocument = gql` - query ProposalCounter { - proposalCounters(first: 2, offset: 1, orderBy: [BLOCK_NUMBER_DESC]) { - nodes { - id - blockNumber - unSignedProposalsCount - signedProposalsCount - statusMap - unSignedProposalsMap - signedProposalsMap - } - } - } -`; - -/** - * __useProposalCounterQuery__ - * - * To run a query within a React component, call `useProposalCounterQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalCounterQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalCounterQuery({ - * variables: { - * }, - * }); - */ -export function useProposalCounterQuery( - baseOptions?: Apollo.QueryHookOptions< - ProposalCounterQuery, - ProposalCounterQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - ProposalCounterDocument, - options - ); -} -export function useProposalCounterLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalCounterQuery, - ProposalCounterQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ProposalCounterQuery, - ProposalCounterQueryVariables - >(ProposalCounterDocument, options); -} -export type ProposalCounterQueryHookResult = ReturnType< - typeof useProposalCounterQuery ->; -export type ProposalCounterLazyQueryHookResult = ReturnType< - typeof useProposalCounterLazyQuery ->; -export type ProposalCounterQueryResult = Apollo.QueryResult< - ProposalCounterQuery, - ProposalCounterQueryVariables ->; -export const ProposalsDocument = gql` - query Proposals($perPage: Int!, $offset: Int!, $filter: ProposalItemFilter) { - proposalItems( - filter: $filter - orderBy: [BLOCK_NUMBER_DESC] - first: $perPage - offset: $offset - ) { - nodes { - ...ProposalListView - } - totalCount - pageInfo { - ...PageInfoMeta - } - } - } - ${ProposalListViewFragmentDoc} - ${PageInfoMetaFragmentDoc} -`; - -/** - * __useProposalsQuery__ - * - * To run a query within a React component, call `useProposalsQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalsQuery({ - * variables: { - * perPage: // value for 'perPage' - * offset: // value for 'offset' - * filter: // value for 'filter' - * }, - * }); - */ -export function useProposalsQuery( - baseOptions: Apollo.QueryHookOptions -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - ProposalsDocument, - options - ); -} -export function useProposalsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalsQuery, - ProposalsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - ProposalsDocument, - options - ); -} -export type ProposalsQueryHookResult = ReturnType; -export type ProposalsLazyQueryHookResult = ReturnType< - typeof useProposalsLazyQuery ->; -export type ProposalsQueryResult = Apollo.QueryResult< - ProposalsQuery, - ProposalsQueryVariables ->; -export const ProposalsCounterDocument = gql` - query ProposalsCounter($id: String!) { - proposalCounter(id: $id) { - id - signedProposalsMap - unSignedProposalsMap - signedProposalsCount - unSignedProposalsCount - statusMap - block { - number - timestamp - } - } - } -`; - -/** - * __useProposalsCounterQuery__ - * - * To run a query within a React component, call `useProposalsCounterQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalsCounterQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalsCounterQuery({ - * variables: { - * id: // value for 'id' - * }, - * }); - */ -export function useProposalsCounterQuery( - baseOptions: Apollo.QueryHookOptions< - ProposalsCounterQuery, - ProposalsCounterQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - ProposalsCounterDocument, - options - ); -} -export function useProposalsCounterLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalsCounterQuery, - ProposalsCounterQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ProposalsCounterQuery, - ProposalsCounterQueryVariables - >(ProposalsCounterDocument, options); -} -export type ProposalsCounterQueryHookResult = ReturnType< - typeof useProposalsCounterQuery ->; -export type ProposalsCounterLazyQueryHookResult = ReturnType< - typeof useProposalsCounterLazyQuery ->; -export type ProposalsCounterQueryResult = Apollo.QueryResult< - ProposalsCounterQuery, - ProposalsCounterQueryVariables ->; -export const ProposalsOverviewDocument = gql` - query ProposalsOverview( - $startRange: BigFloatFilter - $endRange: BigFloatFilter - $sessionId: String! - ) { - session(id: $sessionId) { - id - thresholds { - ...ThresholdValue - } - sessionProposers { - totalCount - } - sessionValidators { - totalCount - } - } - openProposals: proposalItems( - filter: { status: { equalTo: "Open" } } - orderBy: [BLOCK_NUMBER_DESC] - first: 10 - ) { - nodes { - ...ProposalListView - } - pageInfo { - ...PageInfoMeta - } - totalCount - } - open: proposalTimelineStatuses( - filter: { - status: { equalTo: Open } - and: [{ blockNumber: $startRange }, { blockNumber: $endRange }] - } - ) { - totalCount - } - signed: proposalTimelineStatuses( - filter: { - status: { equalTo: Signed } - and: [{ blockNumber: $startRange }, { blockNumber: $endRange }] - } - ) { - totalCount - } - reject: proposalTimelineStatuses( - filter: { - status: { equalTo: Rejected } - and: [{ blockNumber: $startRange }, { blockNumber: $endRange }] - } - ) { - totalCount - } - accepted: proposalTimelineStatuses( - filter: { - status: { equalTo: Accepted } - and: [{ blockNumber: $startRange }, { blockNumber: $endRange }] - } - ) { - totalCount - } - } - ${ThresholdValueFragmentDoc} - ${ProposalListViewFragmentDoc} - ${PageInfoMetaFragmentDoc} -`; - -/** - * __useProposalsOverviewQuery__ - * - * To run a query within a React component, call `useProposalsOverviewQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalsOverviewQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalsOverviewQuery({ - * variables: { - * startRange: // value for 'startRange' - * endRange: // value for 'endRange' - * sessionId: // value for 'sessionId' - * }, - * }); - */ -export function useProposalsOverviewQuery( - baseOptions: Apollo.QueryHookOptions< - ProposalsOverviewQuery, - ProposalsOverviewQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - ProposalsOverviewQuery, - ProposalsOverviewQueryVariables - >(ProposalsOverviewDocument, options); -} -export function useProposalsOverviewLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalsOverviewQuery, - ProposalsOverviewQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ProposalsOverviewQuery, - ProposalsOverviewQueryVariables - >(ProposalsOverviewDocument, options); -} -export type ProposalsOverviewQueryHookResult = ReturnType< - typeof useProposalsOverviewQuery ->; -export type ProposalsOverviewLazyQueryHookResult = ReturnType< - typeof useProposalsOverviewLazyQuery ->; -export type ProposalsOverviewQueryResult = Apollo.QueryResult< - ProposalsOverviewQuery, - ProposalsOverviewQueryVariables ->; -export const ProposalVotesDocument = gql` - query ProposalVotes( - $perPage: Int! - $offset: Int! - $proposalId: String! - $for: AppEnumFe385C7221Filter - ) { - proposalVotes( - filter: { proposalId: { equalTo: $proposalId }, voteStatus: $for } - orderBy: [BLOCK_NUMBER_DESC] - first: $perPage - offset: $offset - ) { - nodes { - ...ProposalsVoteListView - } - totalCount - pageInfo { - ...PageInfoMeta - } - } - } - ${ProposalsVoteListViewFragmentDoc} - ${PageInfoMetaFragmentDoc} -`; - -/** - * __useProposalVotesQuery__ - * - * To run a query within a React component, call `useProposalVotesQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalVotesQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalVotesQuery({ - * variables: { - * perPage: // value for 'perPage' - * offset: // value for 'offset' - * proposalId: // value for 'proposalId' - * for: // value for 'for' - * }, - * }); - */ -export function useProposalVotesQuery( - baseOptions: Apollo.QueryHookOptions< - ProposalVotesQuery, - ProposalVotesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - ProposalVotesDocument, - options - ); -} -export function useProposalVotesLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalVotesQuery, - ProposalVotesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - ProposalVotesDocument, - options - ); -} -export type ProposalVotesQueryHookResult = ReturnType< - typeof useProposalVotesQuery ->; -export type ProposalVotesLazyQueryHookResult = ReturnType< - typeof useProposalVotesLazyQuery ->; -export type ProposalVotesQueryResult = Apollo.QueryResult< - ProposalVotesQuery, - ProposalVotesQueryVariables ->; -export const ProposalDetailsDocument = gql` - query ProposalDetails($id: String!, $targetSessionId: String!) { - session(id: $targetSessionId) { - id - sessionProposers { - totalCount - } - } - proposalItem(id: $id) { - id - data - signature - type - status - chainId - proposalTimelineStatuses { - nodes { - id - blockNumber - status - timestamp - } - } - votesFor: proposalVotesByProposalId( - filter: { voteStatus: { equalTo: FOR } } - ) { - totalCount - } - against: proposalVotesByProposalId( - filter: { voteStatus: { equalTo: AGAINST } } - ) { - totalCount - } - abstain: proposalVotesByProposalId( - filter: { voteStatus: { equalTo: ABSTAIN } } - ) { - totalCount - } - totalVotes: proposalVotesByProposalId { - totalCount - } - block { - timestamp - number - } - } - } -`; - -/** - * __useProposalDetailsQuery__ - * - * To run a query within a React component, call `useProposalDetailsQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalDetailsQuery({ - * variables: { - * id: // value for 'id' - * targetSessionId: // value for 'targetSessionId' - * }, - * }); - */ -export function useProposalDetailsQuery( - baseOptions: Apollo.QueryHookOptions< - ProposalDetailsQuery, - ProposalDetailsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - ProposalDetailsDocument, - options - ); -} -export function useProposalDetailsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalDetailsQuery, - ProposalDetailsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ProposalDetailsQuery, - ProposalDetailsQueryVariables - >(ProposalDetailsDocument, options); -} -export type ProposalDetailsQueryHookResult = ReturnType< - typeof useProposalDetailsQuery ->; -export type ProposalDetailsLazyQueryHookResult = ReturnType< - typeof useProposalDetailsLazyQuery ->; -export type ProposalDetailsQueryResult = Apollo.QueryResult< - ProposalDetailsQuery, - ProposalDetailsQueryVariables ->; -export const EnsureProposalsDocument = gql` - query ensureProposals($ids: [String!]!) { - proposalItems(filter: { id: { in: $ids } }) { - nodes { - id - } - } - } -`; - -/** - * __useEnsureProposalsQuery__ - * - * To run a query within a React component, call `useEnsureProposalsQuery` and pass it any options that fit your needs. - * When your component renders, `useEnsureProposalsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useEnsureProposalsQuery({ - * variables: { - * ids: // value for 'ids' - * }, - * }); - */ -export function useEnsureProposalsQuery( - baseOptions: Apollo.QueryHookOptions< - EnsureProposalsQuery, - EnsureProposalsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - EnsureProposalsDocument, - options - ); -} -export function useEnsureProposalsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - EnsureProposalsQuery, - EnsureProposalsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - EnsureProposalsQuery, - EnsureProposalsQueryVariables - >(EnsureProposalsDocument, options); -} -export type EnsureProposalsQueryHookResult = ReturnType< - typeof useEnsureProposalsQuery ->; -export type EnsureProposalsLazyQueryHookResult = ReturnType< - typeof useEnsureProposalsLazyQuery ->; -export type EnsureProposalsQueryResult = Apollo.QueryResult< - EnsureProposalsQuery, - EnsureProposalsQueryVariables ->; -export const ProposalsOvertimeTotalCountDocument = gql` - query ProposalsOvertimeTotalCount($start: Int!, $end: Int!) { - refreshVote: proposalItems( - filter: { - type: { equalTo: RefreshVote } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - proposerSetUpdateProposal: proposalItems( - filter: { - type: { equalTo: ProposerSetUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - anchorCreateProposal: proposalItems( - filter: { - type: { equalTo: AnchorCreateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - anchorUpdateProposal: proposalItems( - filter: { - type: { equalTo: AnchorUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - tokenAddProposal: proposalItems( - filter: { - type: { equalTo: TokenAddProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - tokenRemoveProposal: proposalItems( - filter: { - type: { equalTo: TokenRemoveProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - wrappingFeeUpdateProposal: proposalItems( - filter: { - type: { equalTo: WrappingFeeUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - resourceIdUpdateProposal: proposalItems( - filter: { - type: { equalTo: ResourceIdUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - rescueTokensProposal: proposalItems( - filter: { - type: { equalTo: RescueTokensProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - maxDepositLimitUpdateProposal: proposalItems( - filter: { - type: { equalTo: MaxDepositLimitUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - minWithdrawalLimitUpdateProposal: proposalItems( - filter: { - type: { equalTo: MinWithdrawalLimitUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - setVerifierProposal: proposalItems( - filter: { - type: { equalTo: SetVerifierProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - setTreasuryHandlerProposal: proposalItems( - filter: { - type: { equalTo: SetTreasuryHandlerProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - feeRecipientUpdateProposal: proposalItems( - filter: { - type: { equalTo: FeeRecipientUpdateProposal } - blockNumber: { greaterThanOrEqualTo: $start, lessThanOrEqualTo: $end } - } - ) { - totalCount - } - } -`; - -/** - * __useProposalsOvertimeTotalCountQuery__ - * - * To run a query within a React component, call `useProposalsOvertimeTotalCountQuery` and pass it any options that fit your needs. - * When your component renders, `useProposalsOvertimeTotalCountQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useProposalsOvertimeTotalCountQuery({ - * variables: { - * start: // value for 'start' - * end: // value for 'end' - * }, - * }); - */ -export function useProposalsOvertimeTotalCountQuery( - baseOptions: Apollo.QueryHookOptions< - ProposalsOvertimeTotalCountQuery, - ProposalsOvertimeTotalCountQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - ProposalsOvertimeTotalCountQuery, - ProposalsOvertimeTotalCountQueryVariables - >(ProposalsOvertimeTotalCountDocument, options); -} -export function useProposalsOvertimeTotalCountLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - ProposalsOvertimeTotalCountQuery, - ProposalsOvertimeTotalCountQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - ProposalsOvertimeTotalCountQuery, - ProposalsOvertimeTotalCountQueryVariables - >(ProposalsOvertimeTotalCountDocument, options); -} -export type ProposalsOvertimeTotalCountQueryHookResult = ReturnType< - typeof useProposalsOvertimeTotalCountQuery ->; -export type ProposalsOvertimeTotalCountLazyQueryHookResult = ReturnType< - typeof useProposalsOvertimeTotalCountLazyQuery ->; -export type ProposalsOvertimeTotalCountQueryResult = Apollo.QueryResult< - ProposalsOvertimeTotalCountQuery, - ProposalsOvertimeTotalCountQueryVariables ->; -export const PublicKeysDocument = gql` - query PublicKeys($PerPage: Int, $offset: Int) { - publicKeys( - first: $PerPage - offset: $offset - orderBy: [SESSIONS_SUM_BLOCK_NUMBER_DESC] - ) { - nodes { - id - compressed - uncompressed - history - block { - timestamp - number - } - sessions(first: 1) { - nodes { - id - ...SessionAuth - thresholds { - ...ThresholdValue - } - block { - timestamp - number - } - } - } - } - pageInfo { - hasNextPage - hasPreviousPage - startCursor - endCursor - } - totalCount - } - } - ${SessionAuthFragmentDoc} - ${ThresholdValueFragmentDoc} -`; - -/** - * __usePublicKeysQuery__ - * - * To run a query within a React component, call `usePublicKeysQuery` and pass it any options that fit your needs. - * When your component renders, `usePublicKeysQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = usePublicKeysQuery({ - * variables: { - * PerPage: // value for 'PerPage' - * offset: // value for 'offset' - * }, - * }); - */ -export function usePublicKeysQuery( - baseOptions?: Apollo.QueryHookOptions< - PublicKeysQuery, - PublicKeysQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - PublicKeysDocument, - options - ); -} -export function usePublicKeysLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - PublicKeysQuery, - PublicKeysQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - PublicKeysDocument, - options - ); -} -export type PublicKeysQueryHookResult = ReturnType; -export type PublicKeysLazyQueryHookResult = ReturnType< - typeof usePublicKeysLazyQuery ->; -export type PublicKeysQueryResult = Apollo.QueryResult< - PublicKeysQuery, - PublicKeysQueryVariables ->; -export const PublicKeyDocument = gql` - query PublicKey($id: String!) { - publicKey(id: $id) { - id - compressed - uncompressed - history - block { - timestamp - number - } - sessions(first: 1) { - nodes { - id - ...SessionAuth - thresholds { - ...ThresholdValue - } - block { - timestamp - number - } - } - } - } - } - ${SessionAuthFragmentDoc} - ${ThresholdValueFragmentDoc} -`; - -/** - * __usePublicKeyQuery__ - * - * To run a query within a React component, call `usePublicKeyQuery` and pass it any options that fit your needs. - * When your component renders, `usePublicKeyQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = usePublicKeyQuery({ - * variables: { - * id: // value for 'id' - * }, - * }); - */ -export function usePublicKeyQuery( - baseOptions: Apollo.QueryHookOptions -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - PublicKeyDocument, - options - ); -} -export function usePublicKeyLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - PublicKeyQuery, - PublicKeyQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - PublicKeyDocument, - options - ); -} -export type PublicKeyQueryHookResult = ReturnType; -export type PublicKeyLazyQueryHookResult = ReturnType< - typeof usePublicKeyLazyQuery ->; -export type PublicKeyQueryResult = Apollo.QueryResult< - PublicKeyQuery, - PublicKeyQueryVariables ->; -export const SessionKeyIdsDocument = gql` - query SessionKeyIds($keys: [String!]!) { - sessions(filter: { id: { in: $keys } }) { - nodes { - id - publicKey { - id - } - } - } - } -`; - -/** - * __useSessionKeyIdsQuery__ - * - * To run a query within a React component, call `useSessionKeyIdsQuery` and pass it any options that fit your needs. - * When your component renders, `useSessionKeyIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useSessionKeyIdsQuery({ - * variables: { - * keys: // value for 'keys' - * }, - * }); - */ -export function useSessionKeyIdsQuery( - baseOptions: Apollo.QueryHookOptions< - SessionKeyIdsQuery, - SessionKeyIdsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - SessionKeyIdsDocument, - options - ); -} -export function useSessionKeyIdsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - SessionKeyIdsQuery, - SessionKeyIdsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - SessionKeyIdsDocument, - options - ); -} -export type SessionKeyIdsQueryHookResult = ReturnType< - typeof useSessionKeyIdsQuery ->; -export type SessionKeyIdsLazyQueryHookResult = ReturnType< - typeof useSessionKeyIdsLazyQuery ->; -export type SessionKeyIdsQueryResult = Apollo.QueryResult< - SessionKeyIdsQuery, - SessionKeyIdsQueryVariables ->; -export const CurrentSessionAuthoritiesDocument = gql` - query CurrentSessionAuthorities { - sessions(first: 1, orderBy: [BLOCK_NUMBER_DESC]) { - nodes { - id - blockId - ...SessionAuth - publicKey { - compressed - } - thresholds { - ...ThresholdValue - } - block { - id - timestamp - } - } - } - } - ${SessionAuthFragmentDoc} - ${ThresholdValueFragmentDoc} -`; - -/** - * __useCurrentSessionAuthoritiesQuery__ - * - * To run a query within a React component, call `useCurrentSessionAuthoritiesQuery` and pass it any options that fit your needs. - * When your component renders, `useCurrentSessionAuthoritiesQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useCurrentSessionAuthoritiesQuery({ - * variables: { - * }, - * }); - */ -export function useCurrentSessionAuthoritiesQuery( - baseOptions?: Apollo.QueryHookOptions< - CurrentSessionAuthoritiesQuery, - CurrentSessionAuthoritiesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - CurrentSessionAuthoritiesQuery, - CurrentSessionAuthoritiesQueryVariables - >(CurrentSessionAuthoritiesDocument, options); -} -export function useCurrentSessionAuthoritiesLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - CurrentSessionAuthoritiesQuery, - CurrentSessionAuthoritiesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - CurrentSessionAuthoritiesQuery, - CurrentSessionAuthoritiesQueryVariables - >(CurrentSessionAuthoritiesDocument, options); -} -export type CurrentSessionAuthoritiesQueryHookResult = ReturnType< - typeof useCurrentSessionAuthoritiesQuery ->; -export type CurrentSessionAuthoritiesLazyQueryHookResult = ReturnType< - typeof useCurrentSessionAuthoritiesLazyQuery ->; -export type CurrentSessionAuthoritiesQueryResult = Apollo.QueryResult< - CurrentSessionAuthoritiesQuery, - CurrentSessionAuthoritiesQueryVariables ->; -export const SessionKeysDocument = gql` - query SessionKeys($SessionId: [String!]!) { - sessions(filter: { id: { in: $SessionId } }) { - nodes { - id - ...SessionAuth - block { - timestamp - number - } - publicKey { - id - compressed - uncompressed - block { - timestamp - number - } - } - } - } - } - ${SessionAuthFragmentDoc} -`; - -/** - * __useSessionKeysQuery__ - * - * To run a query within a React component, call `useSessionKeysQuery` and pass it any options that fit your needs. - * When your component renders, `useSessionKeysQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useSessionKeysQuery({ - * variables: { - * SessionId: // value for 'SessionId' - * }, - * }); - */ -export function useSessionKeysQuery( - baseOptions: Apollo.QueryHookOptions< - SessionKeysQuery, - SessionKeysQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - SessionKeysDocument, - options - ); -} -export function useSessionKeysLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - SessionKeysQuery, - SessionKeysQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery( - SessionKeysDocument, - options - ); -} -export type SessionKeysQueryHookResult = ReturnType; -export type SessionKeysLazyQueryHookResult = ReturnType< - typeof useSessionKeysLazyQuery ->; -export type SessionKeysQueryResult = Apollo.QueryResult< - SessionKeysQuery, - SessionKeysQueryVariables ->; -export const SessionThresholdHistoryDocument = gql` - query SessionThresholdHistory($offset: Int!, $perPage: Int!) { - sessions(first: $perPage, offset: $offset, orderBy: [BLOCK_NUMBER_DESC]) { - nodes { - id - thresholds { - ...ThresholdValue - } - block { - id - timestamp - } - } - pageInfo { - ...PageInfoMeta - } - totalCount - } - } - ${ThresholdValueFragmentDoc} - ${PageInfoMetaFragmentDoc} -`; - -/** - * __useSessionThresholdHistoryQuery__ - * - * To run a query within a React component, call `useSessionThresholdHistoryQuery` and pass it any options that fit your needs. - * When your component renders, `useSessionThresholdHistoryQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useSessionThresholdHistoryQuery({ - * variables: { - * offset: // value for 'offset' - * perPage: // value for 'perPage' - * }, - * }); - */ -export function useSessionThresholdHistoryQuery( - baseOptions: Apollo.QueryHookOptions< - SessionThresholdHistoryQuery, - SessionThresholdHistoryQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - SessionThresholdHistoryQuery, - SessionThresholdHistoryQueryVariables - >(SessionThresholdHistoryDocument, options); -} -export function useSessionThresholdHistoryLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - SessionThresholdHistoryQuery, - SessionThresholdHistoryQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - SessionThresholdHistoryQuery, - SessionThresholdHistoryQueryVariables - >(SessionThresholdHistoryDocument, options); -} -export type SessionThresholdHistoryQueryHookResult = ReturnType< - typeof useSessionThresholdHistoryQuery ->; -export type SessionThresholdHistoryLazyQueryHookResult = ReturnType< - typeof useSessionThresholdHistoryLazyQuery ->; -export type SessionThresholdHistoryQueryResult = Apollo.QueryResult< - SessionThresholdHistoryQuery, - SessionThresholdHistoryQueryVariables ->; -export const SessionThresholdsDocument = gql` - query SessionThresholds($sessionId: String!) { - session(id: $sessionId) { - id - thresholds { - ...ThresholdValue - } - proposersCount: sessionProposers { - totalCount - } - ...SessionAuth - block { - timestamp - number - } - publicKey { - id - compressed - uncompressed - block { - timestamp - number - } - } - } - } - ${ThresholdValueFragmentDoc} - ${SessionAuthFragmentDoc} -`; - -/** - * __useSessionThresholdsQuery__ - * - * To run a query within a React component, call `useSessionThresholdsQuery` and pass it any options that fit your needs. - * When your component renders, `useSessionThresholdsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useSessionThresholdsQuery({ - * variables: { - * sessionId: // value for 'sessionId' - * }, - * }); - */ -export function useSessionThresholdsQuery( - baseOptions: Apollo.QueryHookOptions< - SessionThresholdsQuery, - SessionThresholdsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - SessionThresholdsQuery, - SessionThresholdsQueryVariables - >(SessionThresholdsDocument, options); -} -export function useSessionThresholdsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - SessionThresholdsQuery, - SessionThresholdsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - SessionThresholdsQuery, - SessionThresholdsQueryVariables - >(SessionThresholdsDocument, options); -} -export type SessionThresholdsQueryHookResult = ReturnType< - typeof useSessionThresholdsQuery ->; -export type SessionThresholdsLazyQueryHookResult = ReturnType< - typeof useSessionThresholdsLazyQuery ->; -export type SessionThresholdsQueryResult = Apollo.QueryResult< - SessionThresholdsQuery, - SessionThresholdsQueryVariables ->; -export const LatestThresholdsDocument = gql` - query LatestThresholds($first: Int, $filter: SessionFilter) { - sessions(first: $first, filter: $filter, orderBy: [BLOCK_NUMBER_DESC]) { - nodes { - id - thresholds { - ...ThresholdValue - } - } - } - } - ${ThresholdValueFragmentDoc} -`; - -/** - * __useLatestThresholdsQuery__ - * - * To run a query within a React component, call `useLatestThresholdsQuery` and pass it any options that fit your needs. - * When your component renders, `useLatestThresholdsQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useLatestThresholdsQuery({ - * variables: { - * first: // value for 'first' - * filter: // value for 'filter' - * }, - * }); - */ -export function useLatestThresholdsQuery( - baseOptions?: Apollo.QueryHookOptions< - LatestThresholdsQuery, - LatestThresholdsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery( - LatestThresholdsDocument, - options - ); -} -export function useLatestThresholdsLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - LatestThresholdsQuery, - LatestThresholdsQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - LatestThresholdsQuery, - LatestThresholdsQueryVariables - >(LatestThresholdsDocument, options); -} -export type LatestThresholdsQueryHookResult = ReturnType< - typeof useLatestThresholdsQuery ->; -export type LatestThresholdsLazyQueryHookResult = ReturnType< - typeof useLatestThresholdsLazyQuery ->; -export type LatestThresholdsQueryResult = Apollo.QueryResult< - LatestThresholdsQuery, - LatestThresholdsQueryVariables ->; diff --git a/apps/stats-dapp/src/gql/proposals.graphql b/apps/stats-dapp/src/gql/proposals.graphql index bdb48c7b95..a599cf19ca 100644 --- a/apps/stats-dapp/src/gql/proposals.graphql +++ b/apps/stats-dapp/src/gql/proposals.graphql @@ -118,18 +118,22 @@ query ProposalsOverview( } } -# Query votes for a prooser -query ProposalVotes( +# Query votes for a proposer with vote type +query ProposalVotesWithVotesType( # The number of votes to return $perPage: Int! # The number of votes to skip $offset: Int! # The proposal id $proposalId: String! - $for: AppEnumFe385C7221Filter + # The vote type "FOR", "AGAINST" OR "ABSTAIN" + $voteType: VoteType ) { proposalVotes( - filter: { proposalId: { equalTo: $proposalId }, voteStatus: $for } + filter: { + proposalId: { equalTo: $proposalId } + voteStatus: { equalTo: $voteType } + } orderBy: [BLOCK_NUMBER_DESC] first: $perPage offset: $offset @@ -143,6 +147,32 @@ query ProposalVotes( } } } + +# Query votes for a proposer without vote type +query ProposalVotesWithoutVotesType( + # The number of votes to return + $perPage: Int! + # The number of votes to skip + $offset: Int! + # The proposal id + $proposalId: String! +) { + proposalVotes( + filter: { proposalId: { equalTo: $proposalId } } + orderBy: [BLOCK_NUMBER_DESC] + first: $perPage + offset: $offset + ) { + nodes { + ...ProposalsVoteListView + } + totalCount + pageInfo { + ...PageInfoMeta + } + } +} + # Proposals details query query ProposalDetails( # Proposal id diff --git a/apps/stats-dapp/src/provider/hooks/mappers/index.ts b/apps/stats-dapp/src/provider/hooks/mappers/index.ts index bd2440b1b6..d43d7f92b0 100644 --- a/apps/stats-dapp/src/provider/hooks/mappers/index.ts +++ b/apps/stats-dapp/src/provider/hooks/mappers/index.ts @@ -1,7 +1,7 @@ import { ProposalListViewFragment, - AppEnum155D64Ff70 as ProposalStatus, - AppEnumB6165934C8 as ProposalType, + ProposalStatus, + ProposalType, SessionAuthValidatorFragment, SessionAuthValidatorNodeFragment, } from '../../../generated/graphql'; diff --git a/apps/stats-dapp/src/provider/hooks/useProposals.ts b/apps/stats-dapp/src/provider/hooks/useProposals.ts index 6847cdfac8..e1b0c0a4f3 100644 --- a/apps/stats-dapp/src/provider/hooks/useProposals.ts +++ b/apps/stats-dapp/src/provider/hooks/useProposals.ts @@ -1,13 +1,13 @@ import { - AppEnumB6165934C8 as ProposalType, - AppEnum790A3Fe4Ce as ThresholdVariant, - useEnsureProposalsLazyQuery, + ProposalType, + ThresholdVariant, useProposalDetailsLazyQuery, useProposalsLazyQuery, useProposalsOverviewLazyQuery, - useProposalVotesLazyQuery, - AppEnumFe385C7221 as VoteStatus, - AppEnum155D64Ff70 as ProposalStatus, + useProposalVotesWithVotesTypeLazyQuery, + useProposalVotesWithoutVotesTypeLazyQuery, + VoteType, + ProposalStatus, ProposalsOvertimeTotalCountDocument, } from '../../generated/graphql'; import { mapProposalListItem } from './mappers'; @@ -111,7 +111,7 @@ type ProposalTimeLine = { export type VoteListItem = { id: string; voterId: string; - status: VoteStatus; + status: VoteType; timestamp: Date; }; /** @@ -126,7 +126,7 @@ type VotesPage = Loadable>; * */ export type VotesQuery = PageInfoQuery<{ proposalId: string; - status?: VoteStatus; + status?: VoteType; }>; /** @@ -527,31 +527,64 @@ export function useVotes(votesReqQuery: VotesQuery): VotesPage { isFailed: false, val: null, }); - const [call, query] = useProposalVotesLazyQuery(); + + const [callWithVotesType, queryWithVotesType] = + useProposalVotesWithVotesTypeLazyQuery(); + + const [callWithoutVotesType, queryWithoutVotesType] = + useProposalVotesWithoutVotesTypeLazyQuery(); + const { filter: { proposalId, status }, offset, perPage, } = votesReqQuery; + useEffect(() => { - call({ - variables: { - proposalId, - offset, - perPage, - for: status ? { equalTo: status } : undefined, - }, - }).catch((e) => { - setVotes({ - isLoading: false, - isFailed: true, - val: null, - error: e.message, + if (status) { + callWithVotesType({ + variables: { + proposalId, + offset, + perPage, + voteType: status, + }, + }).catch((e) => { + setVotes({ + isLoading: false, + isFailed: true, + val: null, + error: e.message, + }); }); - }); - }, [perPage, offset, status, call, proposalId]); + } else { + callWithoutVotesType({ + variables: { + proposalId, + offset, + perPage, + }, + }).catch((e) => { + setVotes({ + isLoading: false, + isFailed: true, + val: null, + error: e.message, + }); + }); + } + }, [ + perPage, + offset, + status, + callWithVotesType, + callWithoutVotesType, + proposalId, + ]); useEffect(() => { + const query = status ? queryWithVotesType : queryWithoutVotesType; + const subscription = query.observable .map((res): VotesPage => { if (res.data && res.data.proposalVotes) { @@ -589,7 +622,7 @@ export function useVotes(votesReqQuery: VotesQuery): VotesPage { }) .subscribe(setVotes); return () => subscription.unsubscribe(); - }, [query, setVotes]); + }, [queryWithVotesType, queryWithoutVotesType, status, setVotes]); return votes; } diff --git a/apps/stats-dapp/src/utils/getChipColorByProposalType.ts b/apps/stats-dapp/src/utils/getChipColorByProposalType.ts index 247ec274b6..8d474f3460 100644 --- a/apps/stats-dapp/src/utils/getChipColorByProposalType.ts +++ b/apps/stats-dapp/src/utils/getChipColorByProposalType.ts @@ -1,6 +1,6 @@ import { ChipProps } from '@webb-tools/webb-ui-components/components/Chip/types'; -import { AppEnum155D64Ff70 as ProposalStatus } from '../generated/graphql'; +import { ProposalStatus } from '../generated/graphql'; export function getChipColorByProposalType( type: ProposalStatus diff --git a/apps/stats-dapp/src/utils/getProposalsData.ts b/apps/stats-dapp/src/utils/getProposalsData.ts index 10431b8895..7537ec5fa7 100644 --- a/apps/stats-dapp/src/utils/getProposalsData.ts +++ b/apps/stats-dapp/src/utils/getProposalsData.ts @@ -1,4 +1,4 @@ -import { AppEnumB6165934C8 as ProposalType } from '../generated/graphql'; +import { ProposalType } from '../generated/graphql'; import { AnchorCreateProposal, AnchorUpdateProposal, diff --git a/codegen.yml b/codegen.yml deleted file mode 100644 index 19efef1635..0000000000 --- a/codegen.yml +++ /dev/null @@ -1,27 +0,0 @@ -overwrite: true -schema: "https://subquery-dev.webb.tools/graphql" -documents: - - "./packages/page-statistics/**/*.graphql" - - "./apps/stats-dapp/src/**/*.graphql" -generates: - ./packages/page-statistics/src/generated/graphql.tsx: - plugins: - - "typescript" - - "typescript-operations" - - "typescript-react-apollo" - - ./apps/stats-dapp/src/generated/graphql.tsx: - plugins: - - "typescript" - - "typescript-operations" - - "typescript-react-apollo" - - ./graphql.schema.json: - plugins: - - "introspection" - config: - withComponent: true - withHooks: true - withMutationFn: true - withRefetchFn: true - skipTypename: true diff --git a/graphql.schema.json b/graphql.schema.json deleted file mode 100644 index 1987acc02c..0000000000 --- a/graphql.schema.json +++ /dev/null @@ -1,81112 +0,0 @@ -{ - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": null, - "subscriptionType": null, - "types": [ - { - "kind": "OBJECT", - "name": "Account", - "description": null, - "fields": [ - { - "name": "accountsByCreatorId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksByAccountCreatorIdAndCreateAtBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksByExtrinsicSignerIdAndBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCode", - "description": "Reads a single `CountryCode` that is related to this `Account`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCodeId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCodesByAccountCreatorIdAndCountryCodeId", - "description": "Reads and enables pagination through a set of `CountryCode`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "country_codes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CountryCode`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CountryCodesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createAtBlock", - "description": "Reads a single `Block` that is related to this `Account`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createAtBlockId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creator", - "description": "Reads a single `Account` that is related to this `Account`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creatorId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsics", - "description": "Reads and enables pagination through a set of `Extrinsic`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Extrinsic`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeats", - "description": "Reads and enables pagination through a set of `HeartBeat`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `HeartBeat`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "HeartBeatsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeatsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "legal", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pgpFingerprint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposers", - "description": "Reads and enables pagination through a set of `Proposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Proposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "riot", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionsByHeartBeatAccountIdAndSessionId", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twitter", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validators", - "description": "Reads and enables pagination through a set of `Validator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Validator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ValidatorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "web", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AccountDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `Account`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `Account`.", - "fields": [ - { - "name": "accountsByCreateAtBlockId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `Extrinsic`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `Extrinsic`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `Extrinsic`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsics", - "description": "Reads and enables pagination through a set of `Extrinsic`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Extrinsic`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection", - "description": "A connection to a list of `CountryCode` values, with data from `Account`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `CountryCode`, info from the `Account`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `CountryCode` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CountryCodesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CountryCode` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CountryCode` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdge", - "description": "A `CountryCode` edge in the connection, with data from `Account`.", - "fields": [ - { - "name": "accounts", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CountryCode` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "countryCodeId", - "description": "Distinct count of countryCodeId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createAtBlockId", - "description": "Distinct count of createAtBlockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "Distinct count of createdAt across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creatorId", - "description": "Distinct count of creatorId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display", - "description": "Distinct count of display across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "Distinct count of email across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "Distinct count of image across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "legal", - "description": "Distinct count of legal across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pgpFingerprint", - "description": "Distinct count of pgpFingerprint across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "riot", - "description": "Distinct count of riot across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twitter", - "description": "Distinct count of twitter across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "web", - "description": "Distinct count of web across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "description": "A filter to be used against `Account` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCodeId", - "description": "Filter by the object’s `countryCodeId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createAtBlockId", - "description": "Filter by the object’s `createAtBlockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "Filter by the object’s `createdAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creatorId", - "description": "Filter by the object’s `creatorId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "display", - "description": "Filter by the object’s `display` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "Filter by the object’s `email` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "Filter by the object’s `image` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "legal", - "description": "Filter by the object’s `legal` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pgpFingerprint", - "description": "Filter by the object’s `pgpFingerprint` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "riot", - "description": "Filter by the object’s `riot` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twitter", - "description": "Filter by the object’s `twitter` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "web", - "description": "Filter by the object’s `web` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection", - "description": "A connection to a list of `Session` values, with data from `HeartBeat`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Session`, info from the `HeartBeat`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Session` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Session` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Session` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdge", - "description": "A `Session` edge in the connection, with data from `HeartBeat`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeats", - "description": "Reads and enables pagination through a set of `HeartBeat`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `HeartBeat`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "HeartBeatsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeatsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Session` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountsConnection", - "description": "A connection to a list of `Account` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Account` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Account` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Account` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Account` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AccountsEdge", - "description": "A `Account` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Account` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AccountsGroupBy", - "description": "Grouping methods for `Account` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COUNTRY_CODE_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATE_AT_BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATOR_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DISPLAY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LEGAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PGP_FINGERPRINT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RIOT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TWITTER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEB", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "description": "Conditions for `Account` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AccountsOrderBy", - "description": "Methods to use when ordering `Account`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_AVERAGE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MAX_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_MIN_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_SUM_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_AVERAGE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_AVERAGE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_DISTINCT_COUNT_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_DISTINCT_COUNT_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MAX_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MAX_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MIN_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MIN_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_SUM_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_SUM_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSERS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_AVERAGE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_AVERAGE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_AVERAGE_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_AVERAGE_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_DISTINCT_COUNT_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_DISTINCT_COUNT_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_DISTINCT_COUNT_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_DISTINCT_COUNT_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MAX_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MAX_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MAX_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MAX_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MIN_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MIN_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MIN_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MIN_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_POPULATION_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_POPULATION_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_SAMPLE_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_SAMPLE_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_SUM_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_SUM_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_SUM_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_SUM_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_POPULATION_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_POPULATION_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_SAMPLE_AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_SAMPLE_AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATORS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "description": "@enum\\n@enumName ProposalStatus", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Accepted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Executed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FailedToExecute", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Open", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Rejected", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Removed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Signed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AppEnum155D64Ff70Filter", - "description": "A filter to be used against AppEnum155D64Ff70 fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "description": "@enum\\n@enumName ThresholdVariant", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "KEY_GEN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AppEnum790A3Fe4CeFilter", - "description": "A filter to be used against AppEnum790A3Fe4Ce fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "description": "@enum\\n@enumName ProposalType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "AnchorCreateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AnchorUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EvmProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FeeRecipientUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MaxDepositLimitUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MinWithdrawalLimitUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProposerSetUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RefreshVote", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RescueTokensProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ResourceIdUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SetTreasuryHandlerProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SetVerifierProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TokenAddProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TokenRemoveProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Unknown", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WrappingFeeUpdateProposal", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AppEnumB6165934C8Filter", - "description": "A filter to be used against AppEnumB6165934C8 fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "description": "@enum\\n@enumName VoteType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ABSTAIN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AGAINST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FOR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AppEnumFe385C7221Filter", - "description": "A filter to be used against AppEnumFe385C7221 fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuthoritiesConnection", - "description": "A connection to a list of `Authority` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AuthorityAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Authority` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthoritiesEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Authority` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AuthoritiesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AuthoritiesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthorityAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Authority` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Authority", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Authority` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuthoritiesEdge", - "description": "A `Authority` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Authority` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Authority", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AuthoritiesGroupBy", - "description": "Grouping methods for `Authority` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AuthoritiesHavingInput", - "description": "Conditions for `Authority` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AuthoritiesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AuthoritiesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AuthoritiesOrderBy", - "description": "Methods to use when ordering `Authority`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Authority", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `Authority`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuthorityAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AuthorityDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AuthorityDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Distinct count of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Distinct count of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AuthorityFilter", - "description": "A filter to be used against `Authority` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AuthorityFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Filter by the object’s `current` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Filter by the object’s `next` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AuthorityFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AuthorityFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "BigFloat", - "description": "A floating point number that requires more precision than IEEE 754 binary 64", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "description": "A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "BigInt", - "description": "A signed eight-byte integer. The upper big integer values are greater than the\nmax value for a JavaScript number. Therefore all big integers will be output as\nstrings and not numbers.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Block", - "description": null, - "fields": [ - { - "name": "accountsByAccountCreateAtBlockIdAndCreatorId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountsByCreateAtBlockId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountsByExtrinsicBlockIdAndSignerId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorities", - "description": "Reads and enables pagination through a set of `Authority`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "authorities_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AuthorityFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Authority`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AuthoritiesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AuthoritiesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCodesByAccountCreateAtBlockIdAndCountryCodeId", - "description": "Reads and enables pagination through a set of `CountryCode`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "country_codes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CountryCode`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CountryCodesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "Reads and enables pagination through a set of `Event`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Event`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsics", - "description": "Reads and enables pagination through a set of `Extrinsic`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Extrinsic`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicsByEventBlockIdAndExtrinsicId", - "description": "Reads and enables pagination through a set of `Extrinsic`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Extrinsic`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicsRoot", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keygenThresholds", - "description": "Reads and enables pagination through a set of `KeygenThreshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "keygen_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `KeygenThreshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "KeygenThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KeygenThresholdsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalCounters", - "description": "Reads and enables pagination through a set of `ProposalCounter`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_counters_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCounterFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalCounter`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalCountersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalCountersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItems", - "description": "Reads and enables pagination through a set of `ProposalItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemsByProposalVoteBlockIdAndProposalId", - "description": "Reads and enables pagination through a set of `ProposalItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerThresholds", - "description": "Reads and enables pagination through a set of `ProposerThreshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposer_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposerThreshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposerThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerThresholdsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposersByProposalVoteBlockIdAndVoterId", - "description": "Reads and enables pagination through a set of `Proposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Proposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeys", - "description": "Reads and enables pagination through a set of `PublicKey`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "public_keys_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `PublicKey`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicKeysOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeysConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeysBySessionBlockIdAndPublicKeyId", - "description": "Reads and enables pagination through a set of `PublicKey`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "public_keys_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `PublicKey`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicKeysOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessions", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signatureThresholds", - "description": "Reads and enables pagination through a set of `SignatureThreshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "signature_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SignatureThreshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignatureThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SignatureThresholdsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specVersion", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRoot", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueues", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueue`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queues_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueue`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueuesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection", - "description": "A connection to a list of `Account` values, with data from `Account`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Account`, info from the `Account`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Account` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Account` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Account` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdge", - "description": "A `Account` edge in the connection, with data from `Account`.", - "fields": [ - { - "name": "accountsByCreatorId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Account` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection", - "description": "A connection to a list of `Account` values, with data from `Extrinsic`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Account`, info from the `Extrinsic`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Account` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Account` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Account` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdge", - "description": "A `Account` edge in the connection, with data from `Extrinsic`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsics", - "description": "Reads and enables pagination through a set of `Extrinsic`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Extrinsic`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Account` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockAverageAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Mean average of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection", - "description": "A connection to a list of `CountryCode` values, with data from `Account`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `CountryCode`, info from the `Account`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `CountryCode` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CountryCodesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CountryCode` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CountryCode` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdge", - "description": "A `CountryCode` edge in the connection, with data from `Account`.", - "fields": [ - { - "name": "accounts", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CountryCode` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "extrinsicsRoot", - "description": "Distinct count of extrinsicsRoot across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": "Distinct count of hash across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": "Distinct count of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash", - "description": "Distinct count of parentHash across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specVersion", - "description": "Distinct count of specVersion across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRoot", - "description": "Distinct count of stateRoot across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Distinct count of timestamp across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection", - "description": "A connection to a list of `Extrinsic` values, with data from `Event`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Extrinsic`, info from the `Event`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Extrinsic` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Extrinsic` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Extrinsic` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge", - "description": "A `Extrinsic` edge in the connection, with data from `Event`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "Reads and enables pagination through a set of `Event`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Event`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Extrinsic` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "description": "A filter to be used against `Block` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicsRoot", - "description": "Filter by the object’s `extrinsicsRoot` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": "Filter by the object’s `hash` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": "Filter by the object’s `number` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash", - "description": "Filter by the object’s `parentHash` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specVersion", - "description": "Filter by the object’s `specVersion` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRoot", - "description": "Filter by the object’s `stateRoot` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Filter by the object’s `timestamp` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockMaxAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Maximum of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockMinAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Minimum of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection", - "description": "A connection to a list of `ProposalItem` values, with data from `ProposalVote`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalItem`, info from the `ProposalVote`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalItem` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalItem` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalItem` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdge", - "description": "A `ProposalItem` edge in the connection, with data from `ProposalVote`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalItem` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotesByProposalId", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection", - "description": "A connection to a list of `Proposer` values, with data from `ProposalVote`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Proposer`, info from the `ProposalVote`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Proposer` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Proposer` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Proposer` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdge", - "description": "A `Proposer` edge in the connection, with data from `ProposalVote`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Proposer` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "votes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection", - "description": "A connection to a list of `PublicKey` values, with data from `Session`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKeyAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `PublicKey`, info from the `Session`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `PublicKey` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicKeysGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicKeysHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeyAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `PublicKey` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `PublicKey` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdge", - "description": "A `PublicKey` edge in the connection, with data from `Session`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `PublicKey` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessions", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Population standard deviation of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Sample standard deviation of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockSumAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Sum of number across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Population variance of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlockVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "number", - "description": "Sample variance of number across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlocksConnection", - "description": "A connection to a list of `Block` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlocksEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BlocksEdge", - "description": "A `Block` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "BlocksGroupBy", - "description": "Grouping methods for `Block` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "EXTRINSICS_ROOT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PARENT_HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPEC_VERSION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATE_ROOT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_TRUNCATED_TO_DAY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_TRUNCATED_TO_HOUR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "description": "Conditions for `Block` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "BlocksOrderBy", - "description": "Methods to use when ordering `Block`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_AVERAGE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_DISTINCT_COUNT_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MAX_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_MIN_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_STDDEV_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_SUM_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITIES_VARIANCE_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_AVERAGE_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MAX_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_MIN_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_ROOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_ROOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_SUM_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_AVERAGE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_DISTINCT_COUNT_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MAX_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_MIN_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_POPULATION_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_SUM_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PARENT_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PARENT_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_AVERAGE_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_DISTINCT_COUNT_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MAX_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_MIN_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_POPULATION_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_STDDEV_SAMPLE_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_SUM_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_POPULATION_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEMS_VARIANCE_SAMPLE_TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_AVERAGE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_DISTINCT_COUNT_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MAX_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_MIN_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_POPULATION_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_STDDEV_SAMPLE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_SUM_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_POPULATION_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_AVERAGE_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_AVERAGE_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_DISTINCT_COUNT_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_DISTINCT_COUNT_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MAX_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MAX_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MIN_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_MIN_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_POPULATION_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_POPULATION_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_SAMPLE_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_STDDEV_SAMPLE_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_SUM_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_SUM_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_POPULATION_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_POPULATION_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_AVERAGE_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_DISTINCT_COUNT_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MAX_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_MIN_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_POPULATION_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_STDDEV_SAMPLE_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_SUM_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_POPULATION_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEYS_VARIANCE_SAMPLE_UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_AVERAGE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_DISTINCT_COUNT_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MAX_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_MIN_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_POPULATION_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_SUM_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPEC_VERSION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPEC_VERSION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATE_ROOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATE_ROOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "description": "A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCode", - "description": null, - "fields": [ - { - "name": "accounts", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountsByAccountCountryCodeIdAndCreatorId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksByAccountCountryCodeIdAndCreateAtBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection", - "description": "A connection to a list of `Account` values, with data from `Account`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Account`, info from the `Account`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Account` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Account` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Account` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdge", - "description": "A `Account` edge in the connection, with data from `Account`.", - "fields": [ - { - "name": "accountsByCreatorId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Account` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCodeDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `Account`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `Account`.", - "fields": [ - { - "name": "accountsByCreateAtBlockId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodeDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "code", - "description": "Distinct count of code across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "description": "A filter to be used against `CountryCode` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": "Filter by the object’s `code` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodesConnection", - "description": "A connection to a list of `CountryCode` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `CountryCode` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodesEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `CountryCode` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CountryCodesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCodeAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CountryCode` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CountryCode` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CountryCodesEdge", - "description": "A `CountryCode` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CountryCode` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CountryCodesGroupBy", - "description": "Grouping methods for `CountryCode` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CODE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CountryCodesHavingInput", - "description": "Conditions for `CountryCode` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CountryCodesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CountryCodesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CountryCodesOrderBy", - "description": "Methods to use when ordering `CountryCode`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNTS_AVERAGE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_AVERAGE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_DISTINCT_COUNT_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MAX_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_MIN_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_POPULATION_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_STDDEV_SAMPLE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_SUM_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_POPULATION_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_CREATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_CREATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_DISPLAY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_DISPLAY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_EMAIL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_EMAIL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_IMAGE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_IMAGE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_LEGAL_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_LEGAL_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_RIOT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_RIOT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_TWITTER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_TWITTER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_WEB_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNTS_VARIANCE_SAMPLE_WEB_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CODE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CODE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Cursor", - "description": "A location in a connection that can be used for resuming pagination.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Date", - "description": "The day, does not include a time.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Datetime", - "description": "A point in time as described by the [ISO\n8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "description": "A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Event", - "description": null, - "fields": [ - { - "name": "arguments", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block", - "description": "Reads a single `Block` that is related to this `Event`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docs", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsic", - "description": "Reads a single `Extrinsic` that is related to this `Event`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "module", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Mean average of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "arguments", - "description": "Distinct count of arguments across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "Distinct count of data across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docs", - "description": "Distinct count of docs across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicId", - "description": "Distinct count of extrinsicId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Distinct count of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": "Distinct count of method across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "module", - "description": "Distinct count of module across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Distinct count of timestamp across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "description": "A filter to be used against `Event` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "arguments", - "description": "Filter by the object’s `arguments` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "Filter by the object’s `data` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "docs", - "description": "Filter by the object’s `docs` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicId", - "description": "Filter by the object’s `extrinsicId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Filter by the object’s `index` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": "Filter by the object’s `method` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "module", - "description": "Filter by the object’s `module` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Filter by the object’s `timestamp` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Maximum of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Minimum of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Population standard deviation of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Sample standard deviation of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Sum of index across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Population variance of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Sample variance of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventsConnection", - "description": "A connection to a list of `Event` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "EventAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Event` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Event` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Event` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Event` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EventsEdge", - "description": "A `Event` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Event` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EventsGroupBy", - "description": "Grouping methods for `Event` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARGUMENTS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSIC_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_TRUNCATED_TO_DAY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_TRUNCATED_TO_HOUR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingInput", - "description": "Conditions for `Event` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EventsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EventsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EventsOrderBy", - "description": "Methods to use when ordering `Event`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Extrinsic", - "description": null, - "fields": [ - { - "name": "arguments", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block", - "description": "Reads a single `Block` that is related to this `Extrinsic`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksByEventExtrinsicIdAndBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "Reads and enables pagination through a set of `Event`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Event`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isSigned", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isSuccess", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "module", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signer", - "description": "Reads a single `Account` that is related to this `Extrinsic`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Mean average of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `Event`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `Event`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `Event`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "Reads and enables pagination through a set of `Event`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Event`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "arguments", - "description": "Distinct count of arguments across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": "Distinct count of hash across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Distinct count of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isSigned", - "description": "Distinct count of isSigned across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isSuccess", - "description": "Distinct count of isSuccess across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": "Distinct count of method across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "module", - "description": "Distinct count of module across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signerId", - "description": "Distinct count of signerId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "description": "A filter to be used against `Extrinsic` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "arguments", - "description": "Filter by the object’s `arguments` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hash", - "description": "Filter by the object’s `hash` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Filter by the object’s `index` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isSigned", - "description": "Filter by the object’s `isSigned` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isSuccess", - "description": "Filter by the object’s `isSuccess` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": "Filter by the object’s `method` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "module", - "description": "Filter by the object’s `module` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signerId", - "description": "Filter by the object’s `signerId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Maximum of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Minimum of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Population standard deviation of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Sample standard deviation of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Sum of index across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Population variance of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": "Sample variance of index across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicsConnection", - "description": "A connection to a list of `Extrinsic` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Extrinsic` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Extrinsic` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ExtrinsicAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Extrinsic` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Extrinsic` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExtrinsicsEdge", - "description": "A `Extrinsic` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Extrinsic` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ExtrinsicsGroupBy", - "description": "Grouping methods for `Extrinsic` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARGUMENTS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SIGNED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SUCCESS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingInput", - "description": "Conditions for `Extrinsic` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "index", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "description": "Methods to use when ordering `Extrinsic`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_AVERAGE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_DISTINCT_COUNT_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MAX_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_MIN_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_POPULATION_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_STDDEV_SAMPLE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_SUM_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_POPULATION_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ARGUMENTS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ARGUMENTS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DOCS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_DOCS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EVENTS_VARIANCE_SAMPLE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SIGNED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SIGNED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SUCCESS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SUCCESS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "equalTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "equalTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "equalTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeat", - "description": null, - "fields": [ - { - "name": "account", - "description": "Reads a single `Account` that is related to this `HeartBeat`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "session", - "description": "Reads a single `Session` that is related to this `HeartBeat`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "accountId", - "description": "Distinct count of accountId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Distinct count of sessionId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "description": "A filter to be used against `HeartBeat` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "accountId", - "description": "Filter by the object’s `accountId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Filter by the object’s `sessionId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatsConnection", - "description": "A connection to a list of `HeartBeat` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeatAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `HeartBeat` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeatsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `HeartBeat` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "HeartBeatsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeatAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `HeartBeat` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeat", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `HeartBeat` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HeartBeatsEdge", - "description": "A `HeartBeat` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `HeartBeat` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "HeartBeat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "HeartBeatsGroupBy", - "description": "Grouping methods for `HeartBeat` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingInput", - "description": "Conditions for `HeartBeat` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HeartBeatsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "HeartBeatsOrderBy", - "description": "Methods to use when ordering `HeartBeat`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "description": "A filter to be used against Int fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "JSON", - "description": "The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "description": "A filter to be used against JSON fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "containedBy", - "description": "Contained by the specified JSON.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contains", - "description": "Contains the specified JSON.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containsAllKeys", - "description": "Contains all of the specified keys.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containsAnyKeys", - "description": "Contains any of the specified keys.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containsKey", - "description": "Contains the specified key.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThreshold", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `KeygenThreshold`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdAverageAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Mean average of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Mean average of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Mean average of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Distinct count of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Distinct count of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Distinct count of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdFilter", - "description": "A filter to be used against `KeygenThreshold` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Filter by the object’s `current` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Filter by the object’s `next` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Filter by the object’s `pending` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdMaxAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Maximum of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Maximum of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Maximum of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdMinAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Minimum of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Minimum of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Minimum of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Population standard deviation of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Population standard deviation of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Population standard deviation of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sample standard deviation of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sample standard deviation of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sample standard deviation of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdSumAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sum of current across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sum of next across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sum of pending across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Population variance of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Population variance of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Population variance of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sample variance of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sample variance of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sample variance of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdsConnection", - "description": "A connection to a list of `KeygenThreshold` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `KeygenThreshold` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KeygenThresholdsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `KeygenThreshold` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "KeygenThresholdsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KeygenThresholdAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `KeygenThreshold` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KeygenThreshold", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `KeygenThreshold` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeygenThresholdsEdge", - "description": "A `KeygenThreshold` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `KeygenThreshold` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeygenThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "KeygenThresholdsGroupBy", - "description": "Grouping methods for `KeygenThreshold` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingInput", - "description": "Conditions for `KeygenThreshold` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "KeygenThresholdsOrderBy", - "description": "Methods to use when ordering `KeygenThreshold`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Node", - "description": "An object with a globally unique `ID`.", - "fields": [ - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Authority", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Event", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "HeartBeat", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "KeygenThreshold", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounter", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatus", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProposalVote", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ProposerThreshold", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SessionProposer", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SessionValidator", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SignatureThreshold", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SourceState", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Threshold", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItem", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": "Information about pagination in a connection.", - "fields": [ - { - "name": "endCursor", - "description": "When paginating forwards, the cursor to continue.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNextPage", - "description": "When paginating forwards, are there more items?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPreviousPage", - "description": "When paginating backwards, are there more items?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startCursor", - "description": "When paginating backwards, the cursor to continue.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounter", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `ProposalCounter`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsMap", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusMap", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsMap", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Mean average of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Mean average of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Distinct count of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsMap", - "description": "Distinct count of signedProposalsMap across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusMap", - "description": "Distinct count of statusMap across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Distinct count of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsMap", - "description": "Distinct count of unSignedProposalsMap across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCounterFilter", - "description": "A filter to be used against `ProposalCounter` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalCounterFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCounterFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalCounterFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Filter by the object’s `signedProposalsCount` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsMap", - "description": "Filter by the object’s `signedProposalsMap` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusMap", - "description": "Filter by the object’s `statusMap` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Filter by the object’s `unSignedProposalsCount` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsMap", - "description": "Filter by the object’s `unSignedProposalsMap` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Maximum of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Maximum of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Minimum of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Minimum of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Population standard deviation of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Population standard deviation of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Sample standard deviation of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Sample standard deviation of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Sum of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Sum of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Population variance of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Population variance of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCounterVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": "Sample variance of signedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": "Sample variance of unSignedProposalsCount across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCountersConnection", - "description": "A connection to a list of `ProposalCounter` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounterAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalCounter` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalCountersEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalCounter` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalCountersGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalCounterAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalCounter` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalCounter", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalCounter` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalCountersEdge", - "description": "A `ProposalCounter` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalCounter` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalCounter", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalCountersGroupBy", - "description": "Grouping methods for `ProposalCounter` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_COUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_MAP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_MAP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_COUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_MAP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingInput", - "description": "Conditions for `ProposalCounter` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalCountersHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unSignedProposalsCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalCountersOrderBy", - "description": "Methods to use when ordering `ProposalCounter`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_MAP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_MAP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItem", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `ProposalItem`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksByProposalVoteProposalIdAndBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalTimelineStatuses", - "description": "Reads and enables pagination through a set of `ProposalTimelineStatus`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_timeline_statuses_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalTimelineStatus`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalTimelineStatusesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotesByProposalId", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposersByProposalVoteProposalIdAndVoterId", - "description": "Reads and enables pagination through a set of `Proposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Proposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signature", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnumB6165934C8", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItemsByProposalId", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueueItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueId", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueue`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queues_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueue`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Mean average of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Mean average of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `ProposalVote`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `ProposalVote`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Distinct count of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "Distinct count of data across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Distinct count of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removed", - "description": "Distinct count of removed across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signature", - "description": "Distinct count of signature across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "Distinct count of status across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "Distinct count of type across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "description": "A filter to be used against `ProposalItem` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Filter by the object’s `chainId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "Filter by the object’s `data` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Filter by the object’s `nonce` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removed", - "description": "Filter by the object’s `removed` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signature", - "description": "Filter by the object’s `signature` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "Filter by the object’s `status` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "Filter by the object’s `type` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AppEnumB6165934C8Filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Maximum of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Maximum of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Minimum of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Minimum of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection", - "description": "A connection to a list of `Proposer` values, with data from `ProposalVote`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Proposer`, info from the `ProposalVote`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Proposer` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Proposer` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Proposer` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdge", - "description": "A `Proposer` edge in the connection, with data from `ProposalVote`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Proposer` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "votes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Population standard deviation of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Population standard deviation of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Sample standard deviation of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Sample standard deviation of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Sum of chainId across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Sum of nonce across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection", - "description": "A connection to a list of `UnsignedProposalsQueue` values, with data from `UnsignedProposalsQueueItem`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `UnsignedProposalsQueue`, info from the `UnsignedProposalsQueueItem`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `UnsignedProposalsQueue` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `UnsignedProposalsQueue` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `UnsignedProposalsQueue` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdge", - "description": "A `UnsignedProposalsQueue` edge in the connection, with data from `UnsignedProposalsQueueItem`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `UnsignedProposalsQueue` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItemsByQueueId", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueueItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Population variance of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Population variance of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": "Sample variance of chainId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": "Sample variance of nonce across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemsConnection", - "description": "A connection to a list of `ProposalItem` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalItem` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalItem` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalItem` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalItem` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalItemsEdge", - "description": "A `ProposalItem` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalItem` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalItemsGroupBy", - "description": "Grouping methods for `ProposalItem` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CHAIN_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NONCE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REMOVED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "description": "Conditions for `ProposalItem` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chainId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nonce", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalItemsOrderBy", - "description": "Methods to use when ordering `ProposalItem`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CHAIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CHAIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NONCE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NONCE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_AVERAGE_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MAX_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_MIN_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_SUM_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REMOVED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REMOVED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TYPE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TYPE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatus", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItem", - "description": "Reads a single `ProposalItem` that is related to this `ProposalTimelineStatus`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnum155D64Ff70", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txHash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemId", - "description": "Distinct count of proposalItemId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "Distinct count of status across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Distinct count of timestamp across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txHash", - "description": "Distinct count of txHash across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusFilter", - "description": "A filter to be used against `ProposalTimelineStatus` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemId", - "description": "Filter by the object’s `proposalItemId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "Filter by the object’s `status` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AppEnum155D64Ff70Filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Filter by the object’s `timestamp` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txHash", - "description": "Filter by the object’s `txHash` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusesConnection", - "description": "A connection to a list of `ProposalTimelineStatus` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalTimelineStatus` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusesEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalTimelineStatus` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalTimelineStatusesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalTimelineStatus` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalTimelineStatus", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalTimelineStatus` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalTimelineStatusesEdge", - "description": "A `ProposalTimelineStatus` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalTimelineStatus` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalTimelineStatusesGroupBy", - "description": "Grouping methods for `ProposalTimelineStatus` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEM_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_TRUNCATED_TO_DAY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_TRUNCATED_TO_HOUR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TX_HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingInput", - "description": "Conditions for `ProposalTimelineStatus` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusesHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingDatetimeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalTimelineStatusesOrderBy", - "description": "Methods to use when ordering `ProposalTimelineStatus`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TX_HASH_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TX_HASH_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVote", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `ProposalVote`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposal", - "description": "Reads a single `ProposalItem` that is related to this `ProposalVote`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voteStatus", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnumFe385C7221", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voter", - "description": "Reads a single `Proposer` that is related to this `ProposalVote`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voterId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalId", - "description": "Distinct count of proposalId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voteStatus", - "description": "Distinct count of voteStatus across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voterId", - "description": "Distinct count of voterId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "description": "A filter to be used against `ProposalVote` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalId", - "description": "Filter by the object’s `proposalId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voteStatus", - "description": "Filter by the object’s `voteStatus` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AppEnumFe385C7221Filter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "voterId", - "description": "Filter by the object’s `voterId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVoteVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "description": "A connection to a list of `ProposalVote` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVoteAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalVote` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalVote` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVoteAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalVote` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVote", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalVote` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposalVotesEdge", - "description": "A `ProposalVote` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalVote` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalVote", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalVotesGroupBy", - "description": "Grouping methods for `ProposalVote` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTE_STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingInput", - "description": "Conditions for `ProposalVote` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposalVotesHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "description": "Methods to use when ordering `ProposalVote`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Proposer", - "description": null, - "fields": [ - { - "name": "account", - "description": "Reads a single `Account` that is related to this `Proposer`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksByProposalVoteVoterIdAndBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemsByProposalVoteVoterIdAndProposalId", - "description": "Reads and enables pagination through a set of `ProposalItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposers", - "description": "Reads and enables pagination through a set of `SessionProposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionProposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionsBySessionProposerProposerIdAndSessionId", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "votes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `ProposalVote`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `ProposalVote`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "accountId", - "description": "Distinct count of accountId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "description": "A filter to be used against `Proposer` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "accountId", - "description": "Filter by the object’s `accountId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection", - "description": "A connection to a list of `ProposalItem` values, with data from `ProposalVote`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalItem`, info from the `ProposalVote`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalItem` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalItem` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalItem` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdge", - "description": "A `ProposalItem` edge in the connection, with data from `ProposalVote`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalItem` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotesByProposalId", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection", - "description": "A connection to a list of `Session` values, with data from `SessionProposer`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Session`, info from the `SessionProposer`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Session` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Session` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Session` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdge", - "description": "A `Session` edge in the connection, with data from `SessionProposer`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Session` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposers", - "description": "Reads and enables pagination through a set of `SessionProposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionProposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThreshold", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `ProposerThreshold`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdAverageAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Mean average of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "Distinct count of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdFilter", - "description": "A filter to be used against `ProposerThreshold` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "Filter by the object’s `value` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdMaxAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Maximum of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdMinAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Minimum of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Population standard deviation of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Sample standard deviation of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdSumAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Sum of value across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Population variance of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "value", - "description": "Sample variance of value across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdsConnection", - "description": "A connection to a list of `ProposerThreshold` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposerThreshold` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerThresholdsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposerThreshold` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposerThresholdsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerThresholdAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposerThreshold` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerThreshold", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposerThreshold` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposerThresholdsEdge", - "description": "A `ProposerThreshold` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposerThreshold` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposerThresholdsGroupBy", - "description": "Grouping methods for `ProposerThreshold` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALUE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingInput", - "description": "Conditions for `ProposerThreshold` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposerThresholdsOrderBy", - "description": "Methods to use when ordering `ProposerThreshold`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALUE_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALUE_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposersConnection", - "description": "A connection to a list of `Proposer` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Proposer` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposersEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Proposer` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Proposer` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Proposer` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProposersEdge", - "description": "A `Proposer` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Proposer` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposersGroupBy", - "description": "Grouping methods for `Proposer` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "description": "Conditions for `Proposer` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProposersOrderBy", - "description": "Methods to use when ordering `Proposer`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_AVERAGE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_DISTINCT_COUNT_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MAX_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_MIN_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_POPULATION_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_STDDEV_SAMPLE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_SUM_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_POPULATION_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_VOTER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_VOTER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_VOTE_STATUS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTES_VARIANCE_SAMPLE_VOTE_STATUS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKey", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `PublicKey`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocksBySessionPublicKeyIdAndBlockId", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compressed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "history", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessions", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uncompressed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKeyAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKeyDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection", - "description": "A connection to a list of `Block` values, with data from `Session`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Block`, info from the `Session`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Block` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlocksHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BlockAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Block` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Block` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdge", - "description": "A `Block` edge in the connection, with data from `Session`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Block` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessions", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKeyDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compressed", - "description": "Distinct count of compressed across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "history", - "description": "Distinct count of history across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uncompressed", - "description": "Distinct count of uncompressed across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "description": "A filter to be used against `PublicKey` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compressed", - "description": "Filter by the object’s `compressed` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "history", - "description": "Filter by the object’s `history` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uncompressed", - "description": "Filter by the object’s `uncompressed` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKeysConnection", - "description": "A connection to a list of `PublicKey` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKeyAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `PublicKey` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeysEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `PublicKey` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicKeysGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicKeysHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKeyAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `PublicKey` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `PublicKey` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PublicKeysEdge", - "description": "A `PublicKey` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `PublicKey` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PublicKeysGroupBy", - "description": "Grouping methods for `PublicKey` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPRESSED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HISTORY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PublicKeysHavingInput", - "description": "Conditions for `PublicKey` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PublicKeysHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PublicKeysHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PublicKeysOrderBy", - "description": "Methods to use when ordering `PublicKey`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HISTORY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HISTORY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_AVERAGE_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MAX_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_MIN_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_SUM_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNCOMPRESSED_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNCOMPRESSED_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": "The root query type which gives access points into the data universe.", - "fields": [ - { - "name": "_metadata", - "description": null, - "args": [ - { - "name": "chainId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "_Metadata", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "account", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountByNodeId", - "description": "Reads a single `Account` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Account`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accounts", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AccountsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorities", - "description": "Reads and enables pagination through a set of `Authority`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "authorities_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AuthorityFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Authority`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AuthoritiesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AuthoritiesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authority", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Authority", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorityByNodeId", - "description": "Reads a single `Authority` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "authorities_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Authority`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Authority", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockByNodeId", - "description": "Reads a single `Block` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Block`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blocks", - "description": "Reads and enables pagination through a set of `Block`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Block`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BlocksOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "BlocksConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCode", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCodeByNodeId", - "description": "Reads a single `CountryCode` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "country_codes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `CountryCode`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CountryCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countryCodes", - "description": "Reads and enables pagination through a set of `CountryCode`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "country_codes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CountryCodeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CountryCode`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CountryCodesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CountryCodesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "event", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "eventByNodeId", - "description": "Reads a single `Event` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Event`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": "Reads and enables pagination through a set of `Event`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "events_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Event`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EventsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsic", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsicByNodeId", - "description": "Reads a single `Extrinsic` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Extrinsic`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "extrinsics", - "description": "Reads and enables pagination through a set of `Extrinsic`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Extrinsic`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ExtrinsicsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeat", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "HeartBeat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeatByNodeId", - "description": "Reads a single `HeartBeat` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `HeartBeat`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "HeartBeat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeats", - "description": "Reads and enables pagination through a set of `HeartBeat`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `HeartBeat`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "HeartBeatsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "HeartBeatsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keygenThreshold", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "KeygenThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keygenThresholdByNodeId", - "description": "Reads a single `KeygenThreshold` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "keygen_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `KeygenThreshold`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "KeygenThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keygenThresholds", - "description": "Reads and enables pagination through a set of `KeygenThreshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "keygen_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "KeygenThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `KeygenThreshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "KeygenThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "KeygenThresholdsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "Fetches an object given its globally unique `ID`.", - "args": [ - { - "name": "nodeId", - "description": "The globally unique `ID`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalCounter", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalCounter", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalCounterByNodeId", - "description": "Reads a single `ProposalCounter` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_counters_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `ProposalCounter`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalCounter", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalCounters", - "description": "Reads and enables pagination through a set of `ProposalCounter`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_counters_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalCounterFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalCounter`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalCountersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalCountersConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItem", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemByNodeId", - "description": "Reads a single `ProposalItem` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `ProposalItem`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItems", - "description": "Reads and enables pagination through a set of `ProposalItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalItemsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalTimelineStatus", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalTimelineStatusByNodeId", - "description": "Reads a single `ProposalTimelineStatus` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_timeline_statuses_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `ProposalTimelineStatus`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalTimelineStatuses", - "description": "Reads and enables pagination through a set of `ProposalTimelineStatus`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_timeline_statuses_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalTimelineStatusFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalTimelineStatus`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalTimelineStatusesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalTimelineStatusesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVote", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalVote", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVoteByNodeId", - "description": "Reads a single `ProposalVote` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `ProposalVote`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalVote", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalVotes", - "description": "Reads and enables pagination through a set of `ProposalVote`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalVoteFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalVote`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalVotesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposalVotesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposer", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerByNodeId", - "description": "Reads a single `Proposer` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Proposer`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerThreshold", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposerThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerThresholdByNodeId", - "description": "Reads a single `ProposerThreshold` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposer_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `ProposerThreshold`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposerThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerThresholds", - "description": "Reads and enables pagination through a set of `ProposerThreshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposer_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposerThreshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposerThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposerThresholdsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposers", - "description": "Reads and enables pagination through a set of `Proposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Proposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProposersConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKey", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeyByNodeId", - "description": "Reads a single `PublicKey` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "public_keys_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `PublicKey`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeys", - "description": "Reads and enables pagination through a set of `PublicKey`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "public_keys_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "PublicKeyFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `PublicKey`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PublicKeysOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PublicKeysConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "query", - "description": "Exposes the root query type nested one level down. This is helpful for Relay 1\nwhich can only query top level fields if they are in a particular form.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Query", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "session", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionByNodeId", - "description": "Reads a single `Session` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Session`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposer", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionProposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposerByNodeId", - "description": "Reads a single `SessionProposer` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `SessionProposer`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionProposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposers", - "description": "Reads and enables pagination through a set of `SessionProposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionProposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionProposersConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidator", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionValidator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidatorByNodeId", - "description": "Reads a single `SessionValidator` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `SessionValidator`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionValidator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidators", - "description": "Reads and enables pagination through a set of `SessionValidator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionValidator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessions", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SessionsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signatureThreshold", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SignatureThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signatureThresholdByNodeId", - "description": "Reads a single `SignatureThreshold` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "signature_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `SignatureThreshold`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SignatureThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signatureThresholds", - "description": "Reads and enables pagination through a set of `SignatureThreshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "signature_thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SignatureThreshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignatureThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceState", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceStateByNodeId", - "description": "Reads a single `SourceState` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "source_states_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `SourceState`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceStates", - "description": "Reads and enables pagination through a set of `SourceState`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "source_states_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStateFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SourceState`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SourceStatesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SourceStatesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "threshold", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Threshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "thresholdByNodeId", - "description": "Reads a single `Threshold` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Threshold`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Threshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "thresholds", - "description": "Reads and enables pagination through a set of `Threshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Threshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ThresholdsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueue", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueByNodeId", - "description": "Reads a single `UnsignedProposalsQueue` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queues_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `UnsignedProposalsQueue`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItem", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItemByNodeId", - "description": "Reads a single `UnsignedProposalsQueueItem` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `UnsignedProposalsQueueItem`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItems", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueueItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueues", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueue`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queues_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueue`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueuesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validator", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validatorByNodeId", - "description": "Reads a single `Validator` using its globally unique `ID`.", - "args": [ - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "The globally unique `ID` to be used in selecting a single `Validator`.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validators", - "description": "Reads and enables pagination through a set of `Validator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Validator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ValidatorsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Session", - "description": null, - "fields": [ - { - "name": "accountsByHeartBeatSessionIdAndAccountId", - "description": "Reads and enables pagination through a set of `Account`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Account`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block", - "description": "Reads a single `Block` that is related to this `Session`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeats", - "description": "Reads and enables pagination through a set of `HeartBeat`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `HeartBeat`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "HeartBeatsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeatsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposersBySessionProposerSessionIdAndProposerId", - "description": "Reads and enables pagination through a set of `Proposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Proposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKey", - "description": "Reads a single `PublicKey` that is related to this `Session`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PublicKey", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeyId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposers", - "description": "Reads and enables pagination through a set of `SessionProposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionProposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidators", - "description": "Reads and enables pagination through a set of `SessionValidator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionValidator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "thresholds", - "description": "Reads and enables pagination through a set of `Threshold`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "thresholds_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Threshold`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ThresholdsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ThresholdsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validatorsBySessionValidatorSessionIdAndValidatorId", - "description": "Reads and enables pagination through a set of `Validator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Validator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection", - "description": "A connection to a list of `Account` values, with data from `HeartBeat`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Account`, info from the `HeartBeat`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Account` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AccountAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Account` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Account` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdge", - "description": "A `Account` edge in the connection, with data from `HeartBeat`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeats", - "description": "Reads and enables pagination through a set of `HeartBeat`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "HeartBeatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `HeartBeat`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "HeartBeatsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HeartBeatsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Account` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeyId", - "description": "Distinct count of publicKeyId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "description": "A filter to be used against `Session` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicKeyId", - "description": "Filter by the object’s `publicKeyId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposer", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposer", - "description": "Reads a single `Proposer` that is related to this `SessionProposer`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "session", - "description": "Reads a single `Session` that is related to this `SessionProposer`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposerAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionProposerDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposerDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerId", - "description": "Distinct count of proposerId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Distinct count of sessionId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "description": "A filter to be used against `SessionProposer` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposerId", - "description": "Filter by the object’s `proposerId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Filter by the object’s `sessionId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection", - "description": "A connection to a list of `Proposer` values, with data from `SessionProposer`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Proposer`, info from the `SessionProposer`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Proposer` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposersGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposersHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposerAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Proposer` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Proposer` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdge", - "description": "A `Proposer` edge in the connection, with data from `SessionProposer`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Proposer` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Proposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionProposers", - "description": "Reads and enables pagination through a set of `SessionProposer`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposerFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionProposer`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionProposersOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposersConnection", - "description": "A connection to a list of `SessionProposer` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionProposerAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `SessionProposer` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposersEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `SessionProposer` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionProposersGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionProposersHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposerAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `SessionProposer` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionProposer", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `SessionProposer` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionProposersEdge", - "description": "A `SessionProposer` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `SessionProposer` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionProposer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SessionProposersGroupBy", - "description": "Grouping methods for `SessionProposer` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "PROPOSER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionProposersHavingInput", - "description": "Conditions for `SessionProposer` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionProposersHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionProposersHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SessionProposersOrderBy", - "description": "Methods to use when ordering `SessionProposer`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidator", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBest", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNext", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNextBest", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "session", - "description": "Reads a single `Session` that is related to this `SessionValidator`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validator", - "description": "Reads a single `Validator` that is related to this `SessionValidator`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validatorId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorAverageAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Mean average of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Mean average of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Mean average of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Mean average of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Distinct count of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBest", - "description": "Distinct count of isBest across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNext", - "description": "Distinct count of isNext across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNextBest", - "description": "Distinct count of isNextBest across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Distinct count of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Distinct count of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Distinct count of sessionId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Distinct count of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validatorId", - "description": "Distinct count of validatorId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "description": "A filter to be used against `SessionValidator` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bestOrder", - "description": "Filter by the object’s `bestOrder` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigFloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBest", - "description": "Filter by the object’s `isBest` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNext", - "description": "Filter by the object’s `isNext` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNextBest", - "description": "Filter by the object’s `isNextBest` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Filter by the object’s `nextBestOrder` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Filter by the object’s `reputation` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Filter by the object’s `sessionId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Filter by the object’s `uptime` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validatorId", - "description": "Filter by the object’s `validatorId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorMaxAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Maximum of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Maximum of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Maximum of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Maximum of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorMinAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Minimum of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Minimum of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Minimum of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Minimum of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Population standard deviation of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Population standard deviation of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Population standard deviation of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Population standard deviation of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Sample standard deviation of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Sample standard deviation of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Sample standard deviation of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Sample standard deviation of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorSumAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Sum of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Sum of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Sum of reputation across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Sum of uptime across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Population variance of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Population variance of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Population variance of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Population variance of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "bestOrder", - "description": "Sample variance of bestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": "Sample variance of nextBestOrder across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": "Sample variance of reputation across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": "Sample variance of uptime across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection", - "description": "A connection to a list of `Validator` values, with data from `SessionValidator`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ValidatorAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Validator`, info from the `SessionValidator`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Validator` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ValidatorsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ValidatorsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ValidatorAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Validator` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Validator` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdge", - "description": "A `Validator` edge in the connection, with data from `SessionValidator`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Validator` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidators", - "description": "Reads and enables pagination through a set of `SessionValidator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionValidator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorsConnection", - "description": "A connection to a list of `SessionValidator` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidatorAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `SessionValidator` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `SessionValidator` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionValidatorsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `SessionValidator` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidator", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `SessionValidator` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionValidatorsEdge", - "description": "A `SessionValidator` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `SessionValidator` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionValidator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SessionValidatorsGroupBy", - "description": "Grouping methods for `SessionValidator` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BEST_ORDER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_BEST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT_BEST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_BEST_ORDER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REPUTATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPTIME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATOR_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingInput", - "description": "Conditions for `SessionValidator` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "bestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingBigfloatFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextBestOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reputation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uptime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SessionValidatorsOrderBy", - "description": "Methods to use when ordering `SessionValidator`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionsConnection", - "description": "A connection to a list of `Session` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Session` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Session` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Session` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Session` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SessionsEdge", - "description": "A `Session` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Session` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SessionsGroupBy", - "description": "Grouping methods for `Session` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEY_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "description": "Conditions for `Session` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SessionsOrderBy", - "description": "Methods to use when ordering `Session`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_AVERAGE_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_DISTINCT_COUNT_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MAX_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_MIN_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_POPULATION_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_STDDEV_SAMPLE_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_SUM_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_POPULATION_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "THRESHOLDS_VARIANCE_SAMPLE_VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThreshold", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `SignatureThreshold`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdAverageAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Mean average of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Mean average of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Mean average of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Distinct count of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Distinct count of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Distinct count of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdFilter", - "description": "A filter to be used against `SignatureThreshold` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Filter by the object’s `current` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Filter by the object’s `next` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Filter by the object’s `pending` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdMaxAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Maximum of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Maximum of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Maximum of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdMinAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Minimum of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Minimum of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Minimum of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Population standard deviation of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Population standard deviation of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Population standard deviation of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sample standard deviation of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sample standard deviation of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sample standard deviation of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdSumAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sum of current across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sum of next across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sum of pending across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Population variance of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Population variance of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Population variance of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sample variance of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sample variance of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sample variance of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdsConnection", - "description": "A connection to a list of `SignatureThreshold` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThresholdAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `SignatureThreshold` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SignatureThresholdsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `SignatureThreshold` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignatureThresholdsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SignatureThresholdAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `SignatureThreshold` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SignatureThreshold", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `SignatureThreshold` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignatureThresholdsEdge", - "description": "A `SignatureThreshold` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `SignatureThreshold` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SignatureThreshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SignatureThresholdsGroupBy", - "description": "Grouping methods for `SignatureThreshold` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingInput", - "description": "Conditions for `SignatureThreshold` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SignatureThresholdsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SignatureThresholdsOrderBy", - "description": "Methods to use when ordering `SignatureThreshold`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceState", - "description": null, - "fields": [ - { - "name": "heartBeatCounters", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numberOfSessions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateAverageAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Mean average of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "heartBeatCounters", - "description": "Distinct count of heartBeatCounters across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numberOfSessions", - "description": "Distinct count of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStateFilter", - "description": "A filter to be used against `SourceState` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SourceStateFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "heartBeatCounters", - "description": "Filter by the object’s `heartBeatCounters` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "JSONFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStateFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numberOfSessions", - "description": "Filter by the object’s `numberOfSessions` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SourceStateFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateMaxAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Maximum of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateMinAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Minimum of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Population standard deviation of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Sample standard deviation of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateSumAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Sum of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Population variance of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStateVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "numberOfSessions", - "description": "Sample variance of numberOfSessions across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStatesConnection", - "description": "A connection to a list of `SourceState` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceStateAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `SourceState` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SourceStatesEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `SourceState` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SourceStatesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SourceStateAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `SourceState` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SourceState", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `SourceState` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceStatesEdge", - "description": "A `SourceState` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `SourceState` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SourceState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SourceStatesGroupBy", - "description": "Grouping methods for `SourceState` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "HEART_BEAT_COUNTERS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER_OF_SESSIONS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingInput", - "description": "Conditions for `SourceState` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SourceStatesHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "numberOfSessions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SourceStatesOrderBy", - "description": "Methods to use when ordering `SourceState`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "HEART_BEAT_COUNTERS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HEART_BEAT_COUNTERS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER_OF_SESSIONS_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER_OF_SESSIONS_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "description": "A filter to be used against String fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctFromInsensitive", - "description": "Not equal to the specified value, treating null like an ordinary value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endsWith", - "description": "Ends with the specified string (case-sensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endsWithInsensitive", - "description": "Ends with the specified string (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "equalToInsensitive", - "description": "Equal to the specified value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanInsensitive", - "description": "Greater than the specified value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "greaterThanOrEqualToInsensitive", - "description": "Greater than or equal to the specified value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inInsensitive", - "description": "Included in the specified list (case-insensitive).", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "includes", - "description": "Contains the specified string (case-sensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "includesInsensitive", - "description": "Contains the specified string (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanInsensitive", - "description": "Less than the specified value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lessThanOrEqualToInsensitive", - "description": "Less than or equal to the specified value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "like", - "description": "Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "likeInsensitive", - "description": "Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notDistinctFromInsensitive", - "description": "Equal to the specified value, treating null like an ordinary value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEndsWith", - "description": "Does not end with the specified string (case-sensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEndsWithInsensitive", - "description": "Does not end with the specified string (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notEqualToInsensitive", - "description": "Not equal to the specified value (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notInInsensitive", - "description": "Not included in the specified list (case-insensitive).", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIncludes", - "description": "Does not contain the specified string (case-sensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notIncludesInsensitive", - "description": "Does not contain the specified string (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notLike", - "description": "Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notLikeInsensitive", - "description": "Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notStartsWith", - "description": "Does not start with the specified string (case-sensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notStartsWithInsensitive", - "description": "Does not start with the specified string (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startsWith", - "description": "Starts with the specified string (case-sensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startsWithInsensitive", - "description": "Starts with the specified string (case-insensitive).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TableEstimate", - "description": null, - "fields": [ - { - "name": "estimate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "table", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Threshold", - "description": null, - "fields": [ - { - "name": "current", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "session", - "description": "Reads a single `Session` that is related to this `Threshold`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variant", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AppEnum790A3Fe4Ce", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdAverageAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Mean average of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Mean average of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Mean average of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Distinct count of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Distinct count of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Distinct count of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Distinct count of sessionId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variant", - "description": "Distinct count of variant across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdFilter", - "description": "A filter to be used against `Threshold` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "current", - "description": "Filter by the object’s `current` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Filter by the object’s `next` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ThresholdFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Filter by the object’s `pending` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionId", - "description": "Filter by the object’s `sessionId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variant", - "description": "Filter by the object’s `variant` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "AppEnum790A3Fe4CeFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdMaxAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Maximum of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Maximum of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Maximum of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdMinAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Minimum of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Minimum of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Minimum of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Population standard deviation of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Population standard deviation of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Population standard deviation of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sample standard deviation of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sample standard deviation of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sample standard deviation of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdSumAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sum of current across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sum of next across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sum of pending across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Population variance of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Population variance of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Population variance of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "current", - "description": "Sample variance of current across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": "Sample variance of next across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Sample variance of pending across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdsConnection", - "description": "A connection to a list of `Threshold` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ThresholdAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Threshold` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ThresholdsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Threshold` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ThresholdsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ThresholdAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Threshold` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Threshold", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Threshold` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ThresholdsEdge", - "description": "A `Threshold` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Threshold` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Threshold", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ThresholdsGroupBy", - "description": "Grouping methods for `Threshold` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIANT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingInput", - "description": "Conditions for `Threshold` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ThresholdsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "current", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "next", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ThresholdsOrderBy", - "description": "Methods to use when ordering `Threshold`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CURRENT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIANT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIANT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "description": null, - "fields": [ - { - "name": "block", - "description": "Reads a single `Block` that is related to this `UnsignedProposalsQueue`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalId", - "description": "Reads and enables pagination through a set of `ProposalItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `ProposalItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItemsByQueueId", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueueItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockId", - "description": "Distinct count of blockId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "description": "A filter to be used against `UnsignedProposalsQueue` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockId", - "description": "Filter by the object’s `blockId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItem", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposal", - "description": "Reads a single `ProposalItem` that is related to this `UnsignedProposalsQueueItem`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queue", - "description": "Reads a single `UnsignedProposalsQueue` that is related to this `UnsignedProposalsQueueItem`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queueId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemAggregates", - "description": null, - "fields": [ - { - "name": "average", - "description": "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemAverageAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemMaxAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemMinAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemStddevPopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemStddevSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemSumAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemVariancePopulationAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemVarianceSampleAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemAverageAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Mean average of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Distinct count of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalId", - "description": "Distinct count of proposalId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queueId", - "description": "Distinct count of queueId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "description": "A filter to be used against `UnsignedProposalsQueueItem` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "blockNumber", - "description": "Filter by the object’s `blockNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "proposalId", - "description": "Filter by the object’s `proposalId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queueId", - "description": "Filter by the object’s `queueId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsConnection", - "description": "A connection to a list of `UnsignedProposalsQueueItem` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `UnsignedProposalsQueueItem` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `UnsignedProposalsQueueItem` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `UnsignedProposalsQueueItem` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItem", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `UnsignedProposalsQueueItem` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsEdge", - "description": "A `UnsignedProposalsQueueItem` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `UnsignedProposalsQueueItem` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsGroupBy", - "description": "Grouping methods for `UnsignedProposalsQueueItem` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUEUE_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingInput", - "description": "Conditions for `UnsignedProposalsQueueItem` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemsHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsOrderBy", - "description": "Methods to use when ordering `UnsignedProposalsQueueItem`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueMaxAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Maximum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueMinAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Minimum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection", - "description": "A connection to a list of `ProposalItem` values, with data from `UnsignedProposalsQueueItem`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `ProposalItem`, info from the `UnsignedProposalsQueueItem`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `ProposalItem` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProposalItemsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ProposalItemsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItemAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `ProposalItem` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `ProposalItem` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdge", - "description": "A `ProposalItem` edge in the connection, with data from `UnsignedProposalsQueueItem`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `ProposalItem` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProposalItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unsignedProposalsQueueItemsByProposalId", - "description": "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueueItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `UnsignedProposalsQueueItem`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueueItemsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueItemsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueStddevPopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueStddevSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample standard deviation of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueSumAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sum of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueVariancePopulationAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Population variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueVarianceSampleAggregates", - "description": null, - "fields": [ - { - "name": "blockNumber", - "description": "Sample variance of blockNumber across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigFloat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueuesConnection", - "description": "A connection to a list of `UnsignedProposalsQueue` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `UnsignedProposalsQueue` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueuesEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `UnsignedProposalsQueue` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueueAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `UnsignedProposalsQueue` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `UnsignedProposalsQueue` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UnsignedProposalsQueuesEdge", - "description": "A `UnsignedProposalsQueue` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `UnsignedProposalsQueue` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "UnsignedProposalsQueue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesGroupBy", - "description": "Grouping methods for `UnsignedProposalsQueue` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingAverageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingDistinctCountInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingInput", - "description": "Conditions for `UnsignedProposalsQueue` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "average", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingAverageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctCount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingDistinctCountInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "max", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingMaxInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "min", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingMinInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevPopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingStddevPopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stddevSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingStddevSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingSumInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variancePopulation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingVariancePopulationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "varianceSample", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingVarianceSampleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingMaxInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingMinInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingStddevPopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingStddevSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingSumInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingVariancePopulationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnsignedProposalsQueuesHavingVarianceSampleInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "blockNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HavingIntFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "UnsignedProposalsQueuesOrderBy", - "description": "Methods to use when ordering `UnsignedProposalsQueue`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_QUEUE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_QUEUE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Validator", - "description": null, - "fields": [ - { - "name": "account", - "description": "Reads a single `Account` that is related to this `Validator`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorityId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeId", - "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidators", - "description": "Reads and enables pagination through a set of `SessionValidator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionValidator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionsBySessionValidatorValidatorIdAndSessionId", - "description": "Reads and enables pagination through a set of `Session`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Session`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ValidatorAggregates", - "description": null, - "fields": [ - { - "name": "distinctCount", - "description": "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ValidatorDistinctCountAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ValidatorDistinctCountAggregates", - "description": null, - "fields": [ - { - "name": "accountId", - "description": "Distinct count of accountId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorityId", - "description": "Distinct count of authorityId across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Distinct count of id across the matching connection", - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "description": "A filter to be used against `Validator` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "accountId", - "description": "Filter by the object’s `accountId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorityId", - "description": "Filter by the object’s `authorityId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "Filter by the object’s `id` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ValidatorFilter", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection", - "description": "A connection to a list of `Session` values, with data from `SessionValidator`.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Session`, info from the `SessionValidator`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Session` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Session` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Session` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdge", - "description": "A `Session` edge in the connection, with data from `SessionValidator`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Session` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Session", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sessionValidators", - "description": "Reads and enables pagination through a set of `SessionValidator`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinct", - "description": "Fields to be distinct", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "ofType": null - } - }, - "defaultValue": "null", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SessionValidatorFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor\nbased pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `SessionValidator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SessionValidatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SessionValidatorsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ValidatorsConnection", - "description": "A connection to a list of `Validator` values.", - "fields": [ - { - "name": "aggregates", - "description": "Aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ValidatorAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edges", - "description": "A list of edges which contains the `Validator` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ValidatorsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupedAggregates", - "description": "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)", - "args": [ - { - "name": "groupBy", - "description": "The method to use when grouping `Validator` for these aggregates.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ValidatorsGroupBy", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "having", - "description": "Conditions on the grouped aggregates.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ValidatorsHavingInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ValidatorAggregates", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Validator` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Validator` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ValidatorsEdge", - "description": "A `Validator` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Validator` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Validator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ValidatorsGroupBy", - "description": "Grouping methods for `Validator` for usage during aggregation.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ValidatorsHavingInput", - "description": "Conditions for `Validator` aggregates.", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ValidatorsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OR", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ValidatorsHavingInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ValidatorsOrderBy", - "description": "Methods to use when ordering `Validator`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ACCOUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITY_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITY_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PRIMARY_KEY_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_COUNT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_COUNT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MAX_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_MIN_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_SUM_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_Metadata", - "description": null, - "fields": [ - { - "name": "chain", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dynamicDatasources", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "genesisHash", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "indexerHealthy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "indexerNodeVersion", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastProcessedHeight", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastProcessedTimestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryNodeVersion", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowCountEstimate", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TableEstimate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetHeight", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRepeatable", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specifiedByURL", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "accounts_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COUNTRY_CODE_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATED_AT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATE_AT_BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CREATOR_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DISPLAY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EMAIL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IMAGE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LEGAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PGP_FINGERPRINT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RIOT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TWITTER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "WEB", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "authorities_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "blocks_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "EXTRINSICS_ROOT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PARENT_HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SPEC_VERSION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATE_ROOT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "country_codes_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CODE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "events_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARGUMENTS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DOCS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EXTRINSIC_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "extrinsics_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ARGUMENTS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INDEX", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SIGNED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_SUCCESS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "METHOD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MODULE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "heart_beats_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "keygen_thresholds_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "proposal_counters_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_COUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNED_PROPOSALS_MAP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS_MAP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_COUNT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UN_SIGNED_PROPOSALS_MAP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "proposal_items_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CHAIN_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DATA", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NONCE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REMOVED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SIGNATURE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TYPE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "proposal_timeline_statuses_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ITEM_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TIMESTAMP", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TX_HASH", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "proposal_votes_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VOTE_STATUS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "proposer_thresholds_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALUE", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "proposers_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "public_keys_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COMPRESSED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HISTORY", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNCOMPRESSED", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "session_proposers_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSER_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "session_validators_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BEST_ORDER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_BEST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IS_NEXT_BEST", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT_BEST_ORDER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "REPUTATION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UPTIME", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VALIDATOR_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "sessions_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PUBLIC_KEY_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "signature_thresholds_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "source_states_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "HEART_BEAT_COUNTERS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NUMBER_OF_SESSIONS", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "thresholds_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CURRENT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NEXT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PENDING", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SESSION_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIANT", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "unsigned_proposals_queue_items_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PROPOSAL_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "QUEUE_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "unsigned_proposals_queues_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BLOCK_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BLOCK_NUMBER", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "validators_distinct_enum", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ACCOUNT_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AUTHORITY_ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ID", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - } - ], - "directives": [ - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "isRepeatable": false, - "locations": [ - "ARGUMENT_DEFINITION", - "ENUM_VALUE", - "FIELD_DEFINITION", - "INPUT_FIELD_DEFINITION" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"", - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "isRepeatable": false, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "isRepeatable": false, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "specifiedBy", - "description": "Exposes a URL that specifies the behaviour of this scalar.", - "isRepeatable": false, - "locations": [ - "SCALAR" - ], - "args": [ - { - "name": "url", - "description": "The URL that specifies the behaviour of this scalar.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - } - ] - } -} \ No newline at end of file diff --git a/package.json b/package.json index b2aeb3e833..cc5ae54e01 100644 --- a/package.json +++ b/package.json @@ -7,16 +7,16 @@ "build": "nx build", "test": "nx test", "lint": "nx run-many --all --target=lint", + "gql:codegen": "graphql-codegen --config apps/stats-dapp/codegen.yml", "build:bridge": "nx build bridge-dapp", - "build:stats": "cd apps/stats-dapp && NODE_ENV=production webpack", + "build:stats": "graphql-codegen --config apps/stats-dapp/codegen.yml && NODE_ENV=production nx build stats-dapp", "build:webbsite": "nx build webbsite", "build:tangle-website": "nx build tangle-website", "build:storybook": "nx build-storybook webb-ui-components", "build:faucet": "nx build faucet", "export:faucet": "nx export faucet", - "gql:codegen": "graphql-codegen --config codegen.yml", "start:bridge": "cd apps/bridge-dapp && yarn webpack-cli serve --config webpack.dev.js --port 3000", - "start:stats": "nx serve stats-dapp", + "start:stats": "graphql-codegen --config apps/stats-dapp/codegen.yml && nx serve stats-dapp", "start:webbsite": "nx serve webbsite", "start:tangle-website": "nx serve tangle-website", "start:storybook": "nx storybook webb-ui-components", diff --git a/schema.graphql b/schema.graphql deleted file mode 100644 index 9eb3a9b199..0000000000 --- a/schema.graphql +++ /dev/null @@ -1,12311 +0,0 @@ -# This file was generated based on ".graphqlconfig". Do not edit manually. - -schema { - query: Query -} - -"An object with a globally unique `ID`." -interface Node { - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! -} - -type Account implements Node { - "Reads and enables pagination through a set of `Account`." - accountsByCreatorId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "Reads and enables pagination through a set of `Block`." - blocksByAccountCreatorIdAndCreateAtBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection! - "Reads and enables pagination through a set of `Block`." - blocksByExtrinsicSignerIdAndBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection! - "Reads a single `CountryCode` that is related to this `Account`." - countryCode: CountryCode - countryCodeId: String - "Reads and enables pagination through a set of `CountryCode`." - countryCodesByAccountCreatorIdAndCountryCodeId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: CountryCodeFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `CountryCode`." - orderBy: [CountryCodesOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection! - "Reads a single `Block` that is related to this `Account`." - createAtBlock: Block - createAtBlockId: String - createdAt: String - "Reads a single `Account` that is related to this `Account`." - creator: Account - creatorId: String - display: String - email: String - "Reads and enables pagination through a set of `Extrinsic`." - extrinsics( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ExtrinsicFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Extrinsic`." - orderBy: [ExtrinsicsOrderBy!] = [PRIMARY_KEY_ASC] - ): ExtrinsicsConnection! - "Reads and enables pagination through a set of `HeartBeat`." - heartBeats( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: HeartBeatFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `HeartBeat`." - orderBy: [HeartBeatsOrderBy!] = [PRIMARY_KEY_ASC] - ): HeartBeatsConnection! - id: String! - image: String - legal: String - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - pgpFingerprint: String - "Reads and enables pagination through a set of `Proposer`." - proposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Proposer`." - orderBy: [ProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposersConnection! - riot: String - "Reads and enables pagination through a set of `Session`." - sessionsByHeartBeatAccountIdAndSessionId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection! - twitter: String - "Reads and enables pagination through a set of `Validator`." - validators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Validator`." - orderBy: [ValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): ValidatorsConnection! - web: String -} - -type AccountAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: AccountDistinctCountAggregates - keys: [String!] -} - -"A connection to a list of `Block` values, with data from `Account`." -type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination." - edges: [AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `Account`." -type AccountBlocksByAccountCreatorIdAndCreateAtBlockIdManyToManyEdge { - "Reads and enables pagination through a set of `Account`." - accountsByCreateAtBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "A cursor for use in pagination." - cursor: Cursor - "The `Block` at the end of the edge." - node: Block -} - -"A connection to a list of `Block` values, with data from `Extrinsic`." -type AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `Extrinsic`, and the cursor to aid in pagination." - edges: [AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `Extrinsic`." -type AccountBlocksByExtrinsicSignerIdAndBlockIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "Reads and enables pagination through a set of `Extrinsic`." - extrinsics( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ExtrinsicFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Extrinsic`." - orderBy: [ExtrinsicsOrderBy!] = [PRIMARY_KEY_ASC] - ): ExtrinsicsConnection! - "The `Block` at the end of the edge." - node: Block -} - -"A connection to a list of `CountryCode` values, with data from `Account`." -type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: CountryCodeAggregates - "A list of edges which contains the `CountryCode`, info from the `Account`, and the cursor to aid in pagination." - edges: [AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `CountryCode` for these aggregates." - groupBy: [CountryCodesGroupBy!]!, - "Conditions on the grouped aggregates." - having: CountryCodesHavingInput - ): [CountryCodeAggregates!] - "A list of `CountryCode` objects." - nodes: [CountryCode]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `CountryCode` you could get from the connection." - totalCount: Int! -} - -"A `CountryCode` edge in the connection, with data from `Account`." -type AccountCountryCodesByAccountCreatorIdAndCountryCodeIdManyToManyEdge { - "Reads and enables pagination through a set of `Account`." - accounts( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "A cursor for use in pagination." - cursor: Cursor - "The `CountryCode` at the end of the edge." - node: CountryCode -} - -type AccountDistinctCountAggregates { - "Distinct count of countryCodeId across the matching connection" - countryCodeId: BigInt - "Distinct count of createAtBlockId across the matching connection" - createAtBlockId: BigInt - "Distinct count of createdAt across the matching connection" - createdAt: BigInt - "Distinct count of creatorId across the matching connection" - creatorId: BigInt - "Distinct count of display across the matching connection" - display: BigInt - "Distinct count of email across the matching connection" - email: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of image across the matching connection" - image: BigInt - "Distinct count of legal across the matching connection" - legal: BigInt - "Distinct count of pgpFingerprint across the matching connection" - pgpFingerprint: BigInt - "Distinct count of riot across the matching connection" - riot: BigInt - "Distinct count of twitter across the matching connection" - twitter: BigInt - "Distinct count of web across the matching connection" - web: BigInt -} - -"A connection to a list of `Session` values, with data from `HeartBeat`." -type AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SessionAggregates - "A list of edges which contains the `Session`, info from the `HeartBeat`, and the cursor to aid in pagination." - edges: [AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Session` for these aggregates." - groupBy: [SessionsGroupBy!]!, - "Conditions on the grouped aggregates." - having: SessionsHavingInput - ): [SessionAggregates!] - "A list of `Session` objects." - nodes: [Session]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Session` you could get from the connection." - totalCount: Int! -} - -"A `Session` edge in the connection, with data from `HeartBeat`." -type AccountSessionsByHeartBeatAccountIdAndSessionIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "Reads and enables pagination through a set of `HeartBeat`." - heartBeats( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: HeartBeatFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `HeartBeat`." - orderBy: [HeartBeatsOrderBy!] = [PRIMARY_KEY_ASC] - ): HeartBeatsConnection! - "The `Session` at the end of the edge." - node: Session -} - -"A connection to a list of `Account` values." -type AccountsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: AccountAggregates - "A list of edges which contains the `Account` and cursor to aid in pagination." - edges: [AccountsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Account` for these aggregates." - groupBy: [AccountsGroupBy!]!, - "Conditions on the grouped aggregates." - having: AccountsHavingInput - ): [AccountAggregates!] - "A list of `Account` objects." - nodes: [Account]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Account` you could get from the connection." - totalCount: Int! -} - -"A `Account` edge in the connection." -type AccountsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Account` at the end of the edge." - node: Account -} - -"A connection to a list of `Authority` values." -type AuthoritiesConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: AuthorityAggregates - "A list of edges which contains the `Authority` and cursor to aid in pagination." - edges: [AuthoritiesEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Authority` for these aggregates." - groupBy: [AuthoritiesGroupBy!]!, - "Conditions on the grouped aggregates." - having: AuthoritiesHavingInput - ): [AuthorityAggregates!] - "A list of `Authority` objects." - nodes: [Authority]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Authority` you could get from the connection." - totalCount: Int! -} - -"A `Authority` edge in the connection." -type AuthoritiesEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Authority` at the end of the edge." - node: Authority -} - -type Authority implements Node { - "Reads a single `Block` that is related to this `Authority`." - block: Block - blockId: String! - current: JSON - id: String! - next: JSON - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! -} - -type AuthorityAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: AuthorityDistinctCountAggregates - keys: [String!] -} - -type AuthorityDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of current across the matching connection" - current: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of next across the matching connection" - next: BigInt -} - -type Block implements Node { - "Reads and enables pagination through a set of `Account`." - accountsByAccountCreateAtBlockIdAndCreatorId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection! - "Reads and enables pagination through a set of `Account`." - accountsByCreateAtBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "Reads and enables pagination through a set of `Account`." - accountsByExtrinsicBlockIdAndSignerId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection! - "Reads and enables pagination through a set of `Authority`." - authorities( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AuthorityFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Authority`." - orderBy: [AuthoritiesOrderBy!] = [PRIMARY_KEY_ASC] - ): AuthoritiesConnection! - "Reads and enables pagination through a set of `CountryCode`." - countryCodesByAccountCreateAtBlockIdAndCountryCodeId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: CountryCodeFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `CountryCode`." - orderBy: [CountryCodesOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection! - "Reads and enables pagination through a set of `Event`." - events( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: EventFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Event`." - orderBy: [EventsOrderBy!] = [PRIMARY_KEY_ASC] - ): EventsConnection! - "Reads and enables pagination through a set of `Extrinsic`." - extrinsics( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ExtrinsicFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Extrinsic`." - orderBy: [ExtrinsicsOrderBy!] = [PRIMARY_KEY_ASC] - ): ExtrinsicsConnection! - "Reads and enables pagination through a set of `Extrinsic`." - extrinsicsByEventBlockIdAndExtrinsicId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ExtrinsicFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Extrinsic`." - orderBy: [ExtrinsicsOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection! - extrinsicsRoot: String - hash: String - id: String! - "Reads and enables pagination through a set of `KeygenThreshold`." - keygenThresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: KeygenThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `KeygenThreshold`." - orderBy: [KeygenThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): KeygenThresholdsConnection! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - number: BigFloat! - parentHash: String - "Reads and enables pagination through a set of `ProposalCounter`." - proposalCounters( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalCounterFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalCounter`." - orderBy: [ProposalCountersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalCountersConnection! - "Reads and enables pagination through a set of `ProposalItem`." - proposalItems( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalItem`." - orderBy: [ProposalItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalItemsConnection! - "Reads and enables pagination through a set of `ProposalItem`." - proposalItemsByProposalVoteBlockIdAndProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalItem`." - orderBy: [ProposalItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection! - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! - "Reads and enables pagination through a set of `ProposerThreshold`." - proposerThresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposerThreshold`." - orderBy: [ProposerThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposerThresholdsConnection! - "Reads and enables pagination through a set of `Proposer`." - proposersByProposalVoteBlockIdAndVoterId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Proposer`." - orderBy: [ProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection! - "Reads and enables pagination through a set of `PublicKey`." - publicKeys( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: PublicKeyFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `PublicKey`." - orderBy: [PublicKeysOrderBy!] = [PRIMARY_KEY_ASC] - ): PublicKeysConnection! - "Reads and enables pagination through a set of `PublicKey`." - publicKeysBySessionBlockIdAndPublicKeyId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: PublicKeyFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `PublicKey`." - orderBy: [PublicKeysOrderBy!] = [PRIMARY_KEY_ASC] - ): BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection! - "Reads and enables pagination through a set of `Session`." - sessions( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionsConnection! - "Reads and enables pagination through a set of `SignatureThreshold`." - signatureThresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SignatureThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SignatureThreshold`." - orderBy: [SignatureThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): SignatureThresholdsConnection! - specVersion: String - stateRoot: String - timestamp: Datetime - "Reads and enables pagination through a set of `UnsignedProposalsQueue`." - unsignedProposalsQueues( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueue`." - orderBy: [UnsignedProposalsQueuesOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueuesConnection! -} - -"A connection to a list of `Account` values, with data from `Account`." -type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: AccountAggregates - "A list of edges which contains the `Account`, info from the `Account`, and the cursor to aid in pagination." - edges: [BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Account` for these aggregates." - groupBy: [AccountsGroupBy!]!, - "Conditions on the grouped aggregates." - having: AccountsHavingInput - ): [AccountAggregates!] - "A list of `Account` objects." - nodes: [Account]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Account` you could get from the connection." - totalCount: Int! -} - -"A `Account` edge in the connection, with data from `Account`." -type BlockAccountsByAccountCreateAtBlockIdAndCreatorIdManyToManyEdge { - "Reads and enables pagination through a set of `Account`." - accountsByCreatorId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "A cursor for use in pagination." - cursor: Cursor - "The `Account` at the end of the edge." - node: Account -} - -"A connection to a list of `Account` values, with data from `Extrinsic`." -type BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: AccountAggregates - "A list of edges which contains the `Account`, info from the `Extrinsic`, and the cursor to aid in pagination." - edges: [BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Account` for these aggregates." - groupBy: [AccountsGroupBy!]!, - "Conditions on the grouped aggregates." - having: AccountsHavingInput - ): [AccountAggregates!] - "A list of `Account` objects." - nodes: [Account]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Account` you could get from the connection." - totalCount: Int! -} - -"A `Account` edge in the connection, with data from `Extrinsic`." -type BlockAccountsByExtrinsicBlockIdAndSignerIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "Reads and enables pagination through a set of `Extrinsic`." - extrinsics( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ExtrinsicFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Extrinsic`." - orderBy: [ExtrinsicsOrderBy!] = [PRIMARY_KEY_ASC] - ): ExtrinsicsConnection! - "The `Account` at the end of the edge." - node: Account -} - -type BlockAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: BlockAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: BlockDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: BlockMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: BlockMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: BlockStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: BlockStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: BlockSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: BlockVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: BlockVarianceSampleAggregates -} - -type BlockAverageAggregates { - "Mean average of number across the matching connection" - number: BigFloat -} - -"A connection to a list of `CountryCode` values, with data from `Account`." -type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: CountryCodeAggregates - "A list of edges which contains the `CountryCode`, info from the `Account`, and the cursor to aid in pagination." - edges: [BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `CountryCode` for these aggregates." - groupBy: [CountryCodesGroupBy!]!, - "Conditions on the grouped aggregates." - having: CountryCodesHavingInput - ): [CountryCodeAggregates!] - "A list of `CountryCode` objects." - nodes: [CountryCode]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `CountryCode` you could get from the connection." - totalCount: Int! -} - -"A `CountryCode` edge in the connection, with data from `Account`." -type BlockCountryCodesByAccountCreateAtBlockIdAndCountryCodeIdManyToManyEdge { - "Reads and enables pagination through a set of `Account`." - accounts( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "A cursor for use in pagination." - cursor: Cursor - "The `CountryCode` at the end of the edge." - node: CountryCode -} - -type BlockDistinctCountAggregates { - "Distinct count of extrinsicsRoot across the matching connection" - extrinsicsRoot: BigInt - "Distinct count of hash across the matching connection" - hash: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of number across the matching connection" - number: BigInt - "Distinct count of parentHash across the matching connection" - parentHash: BigInt - "Distinct count of specVersion across the matching connection" - specVersion: BigInt - "Distinct count of stateRoot across the matching connection" - stateRoot: BigInt - "Distinct count of timestamp across the matching connection" - timestamp: BigInt -} - -"A connection to a list of `Extrinsic` values, with data from `Event`." -type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ExtrinsicAggregates - "A list of edges which contains the `Extrinsic`, info from the `Event`, and the cursor to aid in pagination." - edges: [BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Extrinsic` for these aggregates." - groupBy: [ExtrinsicsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ExtrinsicsHavingInput - ): [ExtrinsicAggregates!] - "A list of `Extrinsic` objects." - nodes: [Extrinsic]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Extrinsic` you could get from the connection." - totalCount: Int! -} - -"A `Extrinsic` edge in the connection, with data from `Event`." -type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "Reads and enables pagination through a set of `Event`." - events( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: EventFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Event`." - orderBy: [EventsOrderBy!] = [PRIMARY_KEY_ASC] - ): EventsConnection! - "The `Extrinsic` at the end of the edge." - node: Extrinsic -} - -type BlockMaxAggregates { - "Maximum of number across the matching connection" - number: BigFloat -} - -type BlockMinAggregates { - "Minimum of number across the matching connection" - number: BigFloat -} - -"A connection to a list of `ProposalItem` values, with data from `ProposalVote`." -type BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalItemAggregates - "A list of edges which contains the `ProposalItem`, info from the `ProposalVote`, and the cursor to aid in pagination." - edges: [BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalItem` for these aggregates." - groupBy: [ProposalItemsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalItemsHavingInput - ): [ProposalItemAggregates!] - "A list of `ProposalItem` objects." - nodes: [ProposalItem]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalItem` you could get from the connection." - totalCount: Int! -} - -"A `ProposalItem` edge in the connection, with data from `ProposalVote`." -type BlockProposalItemsByProposalVoteBlockIdAndProposalIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalItem` at the end of the edge." - node: ProposalItem - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotesByProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -"A connection to a list of `Proposer` values, with data from `ProposalVote`." -type BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposerAggregates - "A list of edges which contains the `Proposer`, info from the `ProposalVote`, and the cursor to aid in pagination." - edges: [BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Proposer` for these aggregates." - groupBy: [ProposersGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposersHavingInput - ): [ProposerAggregates!] - "A list of `Proposer` objects." - nodes: [Proposer]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Proposer` you could get from the connection." - totalCount: Int! -} - -"A `Proposer` edge in the connection, with data from `ProposalVote`." -type BlockProposersByProposalVoteBlockIdAndVoterIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Proposer` at the end of the edge." - node: Proposer - "Reads and enables pagination through a set of `ProposalVote`." - votes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -"A connection to a list of `PublicKey` values, with data from `Session`." -type BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: PublicKeyAggregates - "A list of edges which contains the `PublicKey`, info from the `Session`, and the cursor to aid in pagination." - edges: [BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `PublicKey` for these aggregates." - groupBy: [PublicKeysGroupBy!]!, - "Conditions on the grouped aggregates." - having: PublicKeysHavingInput - ): [PublicKeyAggregates!] - "A list of `PublicKey` objects." - nodes: [PublicKey]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `PublicKey` you could get from the connection." - totalCount: Int! -} - -"A `PublicKey` edge in the connection, with data from `Session`." -type BlockPublicKeysBySessionBlockIdAndPublicKeyIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `PublicKey` at the end of the edge." - node: PublicKey - "Reads and enables pagination through a set of `Session`." - sessions( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionsConnection! -} - -type BlockStddevPopulationAggregates { - "Population standard deviation of number across the matching connection" - number: BigFloat -} - -type BlockStddevSampleAggregates { - "Sample standard deviation of number across the matching connection" - number: BigFloat -} - -type BlockSumAggregates { - "Sum of number across the matching connection" - number: BigFloat! -} - -type BlockVariancePopulationAggregates { - "Population variance of number across the matching connection" - number: BigFloat -} - -type BlockVarianceSampleAggregates { - "Sample variance of number across the matching connection" - number: BigFloat -} - -"A connection to a list of `Block` values." -type BlocksConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block` and cursor to aid in pagination." - edges: [BlocksEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection." -type BlocksEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Block` at the end of the edge." - node: Block -} - -type CountryCode implements Node { - "Reads and enables pagination through a set of `Account`." - accounts( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "Reads and enables pagination through a set of `Account`." - accountsByAccountCountryCodeIdAndCreatorId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection! - "Reads and enables pagination through a set of `Block`." - blocksByAccountCountryCodeIdAndCreateAtBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection! - code: String! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! -} - -"A connection to a list of `Account` values, with data from `Account`." -type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: AccountAggregates - "A list of edges which contains the `Account`, info from the `Account`, and the cursor to aid in pagination." - edges: [CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Account` for these aggregates." - groupBy: [AccountsGroupBy!]!, - "Conditions on the grouped aggregates." - having: AccountsHavingInput - ): [AccountAggregates!] - "A list of `Account` objects." - nodes: [Account]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Account` you could get from the connection." - totalCount: Int! -} - -"A `Account` edge in the connection, with data from `Account`." -type CountryCodeAccountsByAccountCountryCodeIdAndCreatorIdManyToManyEdge { - "Reads and enables pagination through a set of `Account`." - accountsByCreatorId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "A cursor for use in pagination." - cursor: Cursor - "The `Account` at the end of the edge." - node: Account -} - -type CountryCodeAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: CountryCodeDistinctCountAggregates - keys: [String!] -} - -"A connection to a list of `Block` values, with data from `Account`." -type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination." - edges: [CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `Account`." -type CountryCodeBlocksByAccountCountryCodeIdAndCreateAtBlockIdManyToManyEdge { - "Reads and enables pagination through a set of `Account`." - accountsByCreateAtBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection! - "A cursor for use in pagination." - cursor: Cursor - "The `Block` at the end of the edge." - node: Block -} - -type CountryCodeDistinctCountAggregates { - "Distinct count of code across the matching connection" - code: BigInt - "Distinct count of id across the matching connection" - id: BigInt -} - -"A connection to a list of `CountryCode` values." -type CountryCodesConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: CountryCodeAggregates - "A list of edges which contains the `CountryCode` and cursor to aid in pagination." - edges: [CountryCodesEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `CountryCode` for these aggregates." - groupBy: [CountryCodesGroupBy!]!, - "Conditions on the grouped aggregates." - having: CountryCodesHavingInput - ): [CountryCodeAggregates!] - "A list of `CountryCode` objects." - nodes: [CountryCode]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `CountryCode` you could get from the connection." - totalCount: Int! -} - -"A `CountryCode` edge in the connection." -type CountryCodesEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `CountryCode` at the end of the edge." - node: CountryCode -} - -type Event implements Node { - arguments: String - "Reads a single `Block` that is related to this `Event`." - block: Block - blockId: String! - blockNumber: BigFloat! - data: String - docs: String - "Reads a single `Extrinsic` that is related to this `Event`." - extrinsic: Extrinsic - extrinsicId: String - id: String! - index: Int! - method: String - module: String - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - timestamp: Datetime -} - -type EventAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: EventAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: EventDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: EventMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: EventMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: EventStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: EventStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: EventSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: EventVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: EventVarianceSampleAggregates -} - -type EventAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat - "Mean average of index across the matching connection" - index: BigFloat -} - -type EventDistinctCountAggregates { - "Distinct count of arguments across the matching connection" - arguments: BigInt - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of data across the matching connection" - data: BigInt - "Distinct count of docs across the matching connection" - docs: BigInt - "Distinct count of extrinsicId across the matching connection" - extrinsicId: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of index across the matching connection" - index: BigInt - "Distinct count of method across the matching connection" - method: BigInt - "Distinct count of module across the matching connection" - module: BigInt - "Distinct count of timestamp across the matching connection" - timestamp: BigInt -} - -type EventMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: BigFloat - "Maximum of index across the matching connection" - index: Int -} - -type EventMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: BigFloat - "Minimum of index across the matching connection" - index: Int -} - -type EventStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Population standard deviation of index across the matching connection" - index: BigFloat -} - -type EventStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample standard deviation of index across the matching connection" - index: BigFloat -} - -type EventSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigFloat! - "Sum of index across the matching connection" - index: BigInt! -} - -type EventVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Population variance of index across the matching connection" - index: BigFloat -} - -type EventVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample variance of index across the matching connection" - index: BigFloat -} - -"A connection to a list of `Event` values." -type EventsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: EventAggregates - "A list of edges which contains the `Event` and cursor to aid in pagination." - edges: [EventsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Event` for these aggregates." - groupBy: [EventsGroupBy!]!, - "Conditions on the grouped aggregates." - having: EventsHavingInput - ): [EventAggregates!] - "A list of `Event` objects." - nodes: [Event]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Event` you could get from the connection." - totalCount: Int! -} - -"A `Event` edge in the connection." -type EventsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Event` at the end of the edge." - node: Event -} - -type Extrinsic implements Node { - arguments: String - "Reads a single `Block` that is related to this `Extrinsic`." - block: Block - blockId: String! - blockNumber: BigFloat! - "Reads and enables pagination through a set of `Block`." - blocksByEventExtrinsicIdAndBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection! - "Reads and enables pagination through a set of `Event`." - events( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: EventFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Event`." - orderBy: [EventsOrderBy!] = [PRIMARY_KEY_ASC] - ): EventsConnection! - hash: String! - id: String! - index: Int! - isSigned: Boolean - isSuccess: Boolean - method: String - module: String - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads a single `Account` that is related to this `Extrinsic`." - signer: Account - signerId: String -} - -type ExtrinsicAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ExtrinsicAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ExtrinsicDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ExtrinsicMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ExtrinsicMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ExtrinsicStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ExtrinsicStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ExtrinsicSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ExtrinsicVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ExtrinsicVarianceSampleAggregates -} - -type ExtrinsicAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat - "Mean average of index across the matching connection" - index: BigFloat -} - -"A connection to a list of `Block` values, with data from `Event`." -type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `Event`, and the cursor to aid in pagination." - edges: [ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `Event`." -type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "Reads and enables pagination through a set of `Event`." - events( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: EventFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Event`." - orderBy: [EventsOrderBy!] = [PRIMARY_KEY_ASC] - ): EventsConnection! - "The `Block` at the end of the edge." - node: Block -} - -type ExtrinsicDistinctCountAggregates { - "Distinct count of arguments across the matching connection" - arguments: BigInt - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of hash across the matching connection" - hash: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of index across the matching connection" - index: BigInt - "Distinct count of isSigned across the matching connection" - isSigned: BigInt - "Distinct count of isSuccess across the matching connection" - isSuccess: BigInt - "Distinct count of method across the matching connection" - method: BigInt - "Distinct count of module across the matching connection" - module: BigInt - "Distinct count of signerId across the matching connection" - signerId: BigInt -} - -type ExtrinsicMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: BigFloat - "Maximum of index across the matching connection" - index: Int -} - -type ExtrinsicMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: BigFloat - "Minimum of index across the matching connection" - index: Int -} - -type ExtrinsicStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Population standard deviation of index across the matching connection" - index: BigFloat -} - -type ExtrinsicStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample standard deviation of index across the matching connection" - index: BigFloat -} - -type ExtrinsicSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigFloat! - "Sum of index across the matching connection" - index: BigInt! -} - -type ExtrinsicVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Population variance of index across the matching connection" - index: BigFloat -} - -type ExtrinsicVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample variance of index across the matching connection" - index: BigFloat -} - -"A connection to a list of `Extrinsic` values." -type ExtrinsicsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ExtrinsicAggregates - "A list of edges which contains the `Extrinsic` and cursor to aid in pagination." - edges: [ExtrinsicsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Extrinsic` for these aggregates." - groupBy: [ExtrinsicsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ExtrinsicsHavingInput - ): [ExtrinsicAggregates!] - "A list of `Extrinsic` objects." - nodes: [Extrinsic]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Extrinsic` you could get from the connection." - totalCount: Int! -} - -"A `Extrinsic` edge in the connection." -type ExtrinsicsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Extrinsic` at the end of the edge." - node: Extrinsic -} - -type HeartBeat implements Node { - "Reads a single `Account` that is related to this `HeartBeat`." - account: Account - accountId: String! - blockNumber: BigFloat! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads a single `Session` that is related to this `HeartBeat`." - session: Session - sessionId: String! -} - -type HeartBeatAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: HeartBeatAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: HeartBeatDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: HeartBeatMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: HeartBeatMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: HeartBeatStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: HeartBeatStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: HeartBeatSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: HeartBeatVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: HeartBeatVarianceSampleAggregates -} - -type HeartBeatAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type HeartBeatDistinctCountAggregates { - "Distinct count of accountId across the matching connection" - accountId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of sessionId across the matching connection" - sessionId: BigInt -} - -type HeartBeatMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type HeartBeatMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type HeartBeatStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type HeartBeatStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type HeartBeatSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigFloat! -} - -type HeartBeatVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type HeartBeatVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -"A connection to a list of `HeartBeat` values." -type HeartBeatsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: HeartBeatAggregates - "A list of edges which contains the `HeartBeat` and cursor to aid in pagination." - edges: [HeartBeatsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `HeartBeat` for these aggregates." - groupBy: [HeartBeatsGroupBy!]!, - "Conditions on the grouped aggregates." - having: HeartBeatsHavingInput - ): [HeartBeatAggregates!] - "A list of `HeartBeat` objects." - nodes: [HeartBeat]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `HeartBeat` you could get from the connection." - totalCount: Int! -} - -"A `HeartBeat` edge in the connection." -type HeartBeatsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `HeartBeat` at the end of the edge." - node: HeartBeat -} - -type KeygenThreshold implements Node { - "Reads a single `Block` that is related to this `KeygenThreshold`." - block: Block - blockId: String! - current: Int - id: String! - next: Int - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - pending: Int -} - -type KeygenThresholdAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: KeygenThresholdAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: KeygenThresholdDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: KeygenThresholdMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: KeygenThresholdMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: KeygenThresholdStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: KeygenThresholdStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: KeygenThresholdSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: KeygenThresholdVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: KeygenThresholdVarianceSampleAggregates -} - -type KeygenThresholdAverageAggregates { - "Mean average of current across the matching connection" - current: BigFloat - "Mean average of next across the matching connection" - next: BigFloat - "Mean average of pending across the matching connection" - pending: BigFloat -} - -type KeygenThresholdDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of current across the matching connection" - current: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of next across the matching connection" - next: BigInt - "Distinct count of pending across the matching connection" - pending: BigInt -} - -type KeygenThresholdMaxAggregates { - "Maximum of current across the matching connection" - current: Int - "Maximum of next across the matching connection" - next: Int - "Maximum of pending across the matching connection" - pending: Int -} - -type KeygenThresholdMinAggregates { - "Minimum of current across the matching connection" - current: Int - "Minimum of next across the matching connection" - next: Int - "Minimum of pending across the matching connection" - pending: Int -} - -type KeygenThresholdStddevPopulationAggregates { - "Population standard deviation of current across the matching connection" - current: BigFloat - "Population standard deviation of next across the matching connection" - next: BigFloat - "Population standard deviation of pending across the matching connection" - pending: BigFloat -} - -type KeygenThresholdStddevSampleAggregates { - "Sample standard deviation of current across the matching connection" - current: BigFloat - "Sample standard deviation of next across the matching connection" - next: BigFloat - "Sample standard deviation of pending across the matching connection" - pending: BigFloat -} - -type KeygenThresholdSumAggregates { - "Sum of current across the matching connection" - current: BigInt! - "Sum of next across the matching connection" - next: BigInt! - "Sum of pending across the matching connection" - pending: BigInt! -} - -type KeygenThresholdVariancePopulationAggregates { - "Population variance of current across the matching connection" - current: BigFloat - "Population variance of next across the matching connection" - next: BigFloat - "Population variance of pending across the matching connection" - pending: BigFloat -} - -type KeygenThresholdVarianceSampleAggregates { - "Sample variance of current across the matching connection" - current: BigFloat - "Sample variance of next across the matching connection" - next: BigFloat - "Sample variance of pending across the matching connection" - pending: BigFloat -} - -"A connection to a list of `KeygenThreshold` values." -type KeygenThresholdsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: KeygenThresholdAggregates - "A list of edges which contains the `KeygenThreshold` and cursor to aid in pagination." - edges: [KeygenThresholdsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `KeygenThreshold` for these aggregates." - groupBy: [KeygenThresholdsGroupBy!]!, - "Conditions on the grouped aggregates." - having: KeygenThresholdsHavingInput - ): [KeygenThresholdAggregates!] - "A list of `KeygenThreshold` objects." - nodes: [KeygenThreshold]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `KeygenThreshold` you could get from the connection." - totalCount: Int! -} - -"A `KeygenThreshold` edge in the connection." -type KeygenThresholdsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `KeygenThreshold` at the end of the edge." - node: KeygenThreshold -} - -"Information about pagination in a connection." -type PageInfo { - "When paginating forwards, the cursor to continue." - endCursor: Cursor - "When paginating forwards, are there more items?" - hasNextPage: Boolean! - "When paginating backwards, are there more items?" - hasPreviousPage: Boolean! - "When paginating backwards, the cursor to continue." - startCursor: Cursor -} - -type ProposalCounter implements Node { - "Reads a single `Block` that is related to this `ProposalCounter`." - block: Block - blockId: String! - blockNumber: Int! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - signedProposalsCount: Int! - signedProposalsMap: JSON - statusMap: JSON - unSignedProposalsCount: Int! - unSignedProposalsMap: JSON -} - -type ProposalCounterAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ProposalCounterAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ProposalCounterDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ProposalCounterMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ProposalCounterMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ProposalCounterStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ProposalCounterStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ProposalCounterSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ProposalCounterVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ProposalCounterVarianceSampleAggregates -} - -type ProposalCounterAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat - "Mean average of signedProposalsCount across the matching connection" - signedProposalsCount: BigFloat - "Mean average of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigFloat -} - -type ProposalCounterDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of signedProposalsCount across the matching connection" - signedProposalsCount: BigInt - "Distinct count of signedProposalsMap across the matching connection" - signedProposalsMap: BigInt - "Distinct count of statusMap across the matching connection" - statusMap: BigInt - "Distinct count of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigInt - "Distinct count of unSignedProposalsMap across the matching connection" - unSignedProposalsMap: BigInt -} - -type ProposalCounterMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: Int - "Maximum of signedProposalsCount across the matching connection" - signedProposalsCount: Int - "Maximum of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: Int -} - -type ProposalCounterMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: Int - "Minimum of signedProposalsCount across the matching connection" - signedProposalsCount: Int - "Minimum of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: Int -} - -type ProposalCounterStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Population standard deviation of signedProposalsCount across the matching connection" - signedProposalsCount: BigFloat - "Population standard deviation of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigFloat -} - -type ProposalCounterStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample standard deviation of signedProposalsCount across the matching connection" - signedProposalsCount: BigFloat - "Sample standard deviation of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigFloat -} - -type ProposalCounterSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigInt! - "Sum of signedProposalsCount across the matching connection" - signedProposalsCount: BigInt! - "Sum of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigInt! -} - -type ProposalCounterVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Population variance of signedProposalsCount across the matching connection" - signedProposalsCount: BigFloat - "Population variance of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigFloat -} - -type ProposalCounterVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample variance of signedProposalsCount across the matching connection" - signedProposalsCount: BigFloat - "Sample variance of unSignedProposalsCount across the matching connection" - unSignedProposalsCount: BigFloat -} - -"A connection to a list of `ProposalCounter` values." -type ProposalCountersConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalCounterAggregates - "A list of edges which contains the `ProposalCounter` and cursor to aid in pagination." - edges: [ProposalCountersEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalCounter` for these aggregates." - groupBy: [ProposalCountersGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalCountersHavingInput - ): [ProposalCounterAggregates!] - "A list of `ProposalCounter` objects." - nodes: [ProposalCounter]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalCounter` you could get from the connection." - totalCount: Int! -} - -"A `ProposalCounter` edge in the connection." -type ProposalCountersEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalCounter` at the end of the edge." - node: ProposalCounter -} - -type ProposalItem implements Node { - "Reads a single `Block` that is related to this `ProposalItem`." - block: Block - blockId: String! - blockNumber: Int! - "Reads and enables pagination through a set of `Block`." - blocksByProposalVoteProposalIdAndBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection! - chainId: BigFloat - data: String! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - nonce: Int! - "Reads and enables pagination through a set of `ProposalTimelineStatus`." - proposalTimelineStatuses( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalTimelineStatusFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalTimelineStatus`." - orderBy: [ProposalTimelineStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalTimelineStatusesConnection! - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotesByProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! - "Reads and enables pagination through a set of `Proposer`." - proposersByProposalVoteProposalIdAndVoterId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Proposer`." - orderBy: [ProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection! - removed: Boolean - signature: String - status: String! - type: AppEnumB6165934C8! - "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`." - unsignedProposalsQueueItemsByProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueueItem`." - orderBy: [UnsignedProposalsQueueItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueueItemsConnection! - "Reads and enables pagination through a set of `UnsignedProposalsQueue`." - unsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueue`." - orderBy: [UnsignedProposalsQueuesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection! -} - -type ProposalItemAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ProposalItemAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ProposalItemDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ProposalItemMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ProposalItemMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ProposalItemStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ProposalItemStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ProposalItemSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ProposalItemVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ProposalItemVarianceSampleAggregates -} - -type ProposalItemAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat - "Mean average of chainId across the matching connection" - chainId: BigFloat - "Mean average of nonce across the matching connection" - nonce: BigFloat -} - -"A connection to a list of `Block` values, with data from `ProposalVote`." -type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination." - edges: [ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `ProposalVote`." -type ProposalItemBlocksByProposalVoteProposalIdAndBlockIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Block` at the end of the edge." - node: Block - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -type ProposalItemDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of chainId across the matching connection" - chainId: BigInt - "Distinct count of data across the matching connection" - data: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of nonce across the matching connection" - nonce: BigInt - "Distinct count of removed across the matching connection" - removed: BigInt - "Distinct count of signature across the matching connection" - signature: BigInt - "Distinct count of status across the matching connection" - status: BigInt - "Distinct count of type across the matching connection" - type: BigInt -} - -type ProposalItemMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: Int - "Maximum of chainId across the matching connection" - chainId: BigFloat - "Maximum of nonce across the matching connection" - nonce: Int -} - -type ProposalItemMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: Int - "Minimum of chainId across the matching connection" - chainId: BigFloat - "Minimum of nonce across the matching connection" - nonce: Int -} - -"A connection to a list of `Proposer` values, with data from `ProposalVote`." -type ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposerAggregates - "A list of edges which contains the `Proposer`, info from the `ProposalVote`, and the cursor to aid in pagination." - edges: [ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Proposer` for these aggregates." - groupBy: [ProposersGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposersHavingInput - ): [ProposerAggregates!] - "A list of `Proposer` objects." - nodes: [Proposer]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Proposer` you could get from the connection." - totalCount: Int! -} - -"A `Proposer` edge in the connection, with data from `ProposalVote`." -type ProposalItemProposersByProposalVoteProposalIdAndVoterIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Proposer` at the end of the edge." - node: Proposer - "Reads and enables pagination through a set of `ProposalVote`." - votes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -type ProposalItemStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Population standard deviation of chainId across the matching connection" - chainId: BigFloat - "Population standard deviation of nonce across the matching connection" - nonce: BigFloat -} - -type ProposalItemStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample standard deviation of chainId across the matching connection" - chainId: BigFloat - "Sample standard deviation of nonce across the matching connection" - nonce: BigFloat -} - -type ProposalItemSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigInt! - "Sum of chainId across the matching connection" - chainId: BigFloat! - "Sum of nonce across the matching connection" - nonce: BigInt! -} - -"A connection to a list of `UnsignedProposalsQueue` values, with data from `UnsignedProposalsQueueItem`." -type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: UnsignedProposalsQueueAggregates - "A list of edges which contains the `UnsignedProposalsQueue`, info from the `UnsignedProposalsQueueItem`, and the cursor to aid in pagination." - edges: [ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `UnsignedProposalsQueue` for these aggregates." - groupBy: [UnsignedProposalsQueuesGroupBy!]!, - "Conditions on the grouped aggregates." - having: UnsignedProposalsQueuesHavingInput - ): [UnsignedProposalsQueueAggregates!] - "A list of `UnsignedProposalsQueue` objects." - nodes: [UnsignedProposalsQueue]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `UnsignedProposalsQueue` you could get from the connection." - totalCount: Int! -} - -"A `UnsignedProposalsQueue` edge in the connection, with data from `UnsignedProposalsQueueItem`." -type ProposalItemUnsignedProposalsQueuesByUnsignedProposalsQueueItemProposalIdAndQueueIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `UnsignedProposalsQueue` at the end of the edge." - node: UnsignedProposalsQueue - "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`." - unsignedProposalsQueueItemsByQueueId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueueItem`." - orderBy: [UnsignedProposalsQueueItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueueItemsConnection! -} - -type ProposalItemVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Population variance of chainId across the matching connection" - chainId: BigFloat - "Population variance of nonce across the matching connection" - nonce: BigFloat -} - -type ProposalItemVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample variance of chainId across the matching connection" - chainId: BigFloat - "Sample variance of nonce across the matching connection" - nonce: BigFloat -} - -"A connection to a list of `ProposalItem` values." -type ProposalItemsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalItemAggregates - "A list of edges which contains the `ProposalItem` and cursor to aid in pagination." - edges: [ProposalItemsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalItem` for these aggregates." - groupBy: [ProposalItemsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalItemsHavingInput - ): [ProposalItemAggregates!] - "A list of `ProposalItem` objects." - nodes: [ProposalItem]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalItem` you could get from the connection." - totalCount: Int! -} - -"A `ProposalItem` edge in the connection." -type ProposalItemsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalItem` at the end of the edge." - node: ProposalItem -} - -type ProposalTimelineStatus implements Node { - blockNumber: BigFloat! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads a single `ProposalItem` that is related to this `ProposalTimelineStatus`." - proposalItem: ProposalItem - proposalItemId: String! - status: AppEnum155D64Ff70! - timestamp: Datetime! - txHash: String -} - -type ProposalTimelineStatusAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ProposalTimelineStatusAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ProposalTimelineStatusDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ProposalTimelineStatusMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ProposalTimelineStatusMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ProposalTimelineStatusStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ProposalTimelineStatusStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ProposalTimelineStatusSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ProposalTimelineStatusVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ProposalTimelineStatusVarianceSampleAggregates -} - -type ProposalTimelineStatusAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalTimelineStatusDistinctCountAggregates { - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of proposalItemId across the matching connection" - proposalItemId: BigInt - "Distinct count of status across the matching connection" - status: BigInt - "Distinct count of timestamp across the matching connection" - timestamp: BigInt - "Distinct count of txHash across the matching connection" - txHash: BigInt -} - -type ProposalTimelineStatusMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalTimelineStatusMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalTimelineStatusStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalTimelineStatusStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalTimelineStatusSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigFloat! -} - -type ProposalTimelineStatusVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalTimelineStatusVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -"A connection to a list of `ProposalTimelineStatus` values." -type ProposalTimelineStatusesConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalTimelineStatusAggregates - "A list of edges which contains the `ProposalTimelineStatus` and cursor to aid in pagination." - edges: [ProposalTimelineStatusesEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalTimelineStatus` for these aggregates." - groupBy: [ProposalTimelineStatusesGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalTimelineStatusesHavingInput - ): [ProposalTimelineStatusAggregates!] - "A list of `ProposalTimelineStatus` objects." - nodes: [ProposalTimelineStatus]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalTimelineStatus` you could get from the connection." - totalCount: Int! -} - -"A `ProposalTimelineStatus` edge in the connection." -type ProposalTimelineStatusesEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalTimelineStatus` at the end of the edge." - node: ProposalTimelineStatus -} - -type ProposalVote implements Node { - "Reads a single `Block` that is related to this `ProposalVote`." - block: Block - blockId: String! - blockNumber: BigFloat! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads a single `ProposalItem` that is related to this `ProposalVote`." - proposal: ProposalItem - proposalId: String! - voteStatus: AppEnumFe385C7221! - "Reads a single `Proposer` that is related to this `ProposalVote`." - voter: Proposer - voterId: String! -} - -type ProposalVoteAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ProposalVoteAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ProposalVoteDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ProposalVoteMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ProposalVoteMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ProposalVoteStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ProposalVoteStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ProposalVoteSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ProposalVoteVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ProposalVoteVarianceSampleAggregates -} - -type ProposalVoteAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalVoteDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of proposalId across the matching connection" - proposalId: BigInt - "Distinct count of voteStatus across the matching connection" - voteStatus: BigInt - "Distinct count of voterId across the matching connection" - voterId: BigInt -} - -type ProposalVoteMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalVoteMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalVoteStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalVoteStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalVoteSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigFloat! -} - -type ProposalVoteVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type ProposalVoteVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -"A connection to a list of `ProposalVote` values." -type ProposalVotesConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalVoteAggregates - "A list of edges which contains the `ProposalVote` and cursor to aid in pagination." - edges: [ProposalVotesEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalVote` for these aggregates." - groupBy: [ProposalVotesGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalVotesHavingInput - ): [ProposalVoteAggregates!] - "A list of `ProposalVote` objects." - nodes: [ProposalVote]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalVote` you could get from the connection." - totalCount: Int! -} - -"A `ProposalVote` edge in the connection." -type ProposalVotesEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalVote` at the end of the edge." - node: ProposalVote -} - -type Proposer implements Node { - "Reads a single `Account` that is related to this `Proposer`." - account: Account - accountId: String! - "Reads and enables pagination through a set of `Block`." - blocksByProposalVoteVoterIdAndBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads and enables pagination through a set of `ProposalItem`." - proposalItemsByProposalVoteVoterIdAndProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalItem`." - orderBy: [ProposalItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection! - "Reads and enables pagination through a set of `SessionProposer`." - sessionProposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionProposer`." - orderBy: [SessionProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionProposersConnection! - "Reads and enables pagination through a set of `Session`." - sessionsBySessionProposerProposerIdAndSessionId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection! - "Reads and enables pagination through a set of `ProposalVote`." - votes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -type ProposerAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ProposerDistinctCountAggregates - keys: [String!] -} - -"A connection to a list of `Block` values, with data from `ProposalVote`." -type ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination." - edges: [ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `ProposalVote`." -type ProposerBlocksByProposalVoteVoterIdAndBlockIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Block` at the end of the edge." - node: Block - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -type ProposerDistinctCountAggregates { - "Distinct count of accountId across the matching connection" - accountId: BigInt - "Distinct count of id across the matching connection" - id: BigInt -} - -"A connection to a list of `ProposalItem` values, with data from `ProposalVote`." -type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalItemAggregates - "A list of edges which contains the `ProposalItem`, info from the `ProposalVote`, and the cursor to aid in pagination." - edges: [ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalItem` for these aggregates." - groupBy: [ProposalItemsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalItemsHavingInput - ): [ProposalItemAggregates!] - "A list of `ProposalItem` objects." - nodes: [ProposalItem]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalItem` you could get from the connection." - totalCount: Int! -} - -"A `ProposalItem` edge in the connection, with data from `ProposalVote`." -type ProposerProposalItemsByProposalVoteVoterIdAndProposalIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalItem` at the end of the edge." - node: ProposalItem - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotesByProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection! -} - -"A connection to a list of `Session` values, with data from `SessionProposer`." -type ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SessionAggregates - "A list of edges which contains the `Session`, info from the `SessionProposer`, and the cursor to aid in pagination." - edges: [ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Session` for these aggregates." - groupBy: [SessionsGroupBy!]!, - "Conditions on the grouped aggregates." - having: SessionsHavingInput - ): [SessionAggregates!] - "A list of `Session` objects." - nodes: [Session]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Session` you could get from the connection." - totalCount: Int! -} - -"A `Session` edge in the connection, with data from `SessionProposer`." -type ProposerSessionsBySessionProposerProposerIdAndSessionIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Session` at the end of the edge." - node: Session - "Reads and enables pagination through a set of `SessionProposer`." - sessionProposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionProposer`." - orderBy: [SessionProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionProposersConnection! -} - -type ProposerThreshold implements Node { - "Reads a single `Block` that is related to this `ProposerThreshold`." - block: Block - blockId: String! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - value: Int -} - -type ProposerThresholdAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ProposerThresholdAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ProposerThresholdDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ProposerThresholdMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ProposerThresholdMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ProposerThresholdStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ProposerThresholdStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ProposerThresholdSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ProposerThresholdVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ProposerThresholdVarianceSampleAggregates -} - -type ProposerThresholdAverageAggregates { - "Mean average of value across the matching connection" - value: BigFloat -} - -type ProposerThresholdDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of value across the matching connection" - value: BigInt -} - -type ProposerThresholdMaxAggregates { - "Maximum of value across the matching connection" - value: Int -} - -type ProposerThresholdMinAggregates { - "Minimum of value across the matching connection" - value: Int -} - -type ProposerThresholdStddevPopulationAggregates { - "Population standard deviation of value across the matching connection" - value: BigFloat -} - -type ProposerThresholdStddevSampleAggregates { - "Sample standard deviation of value across the matching connection" - value: BigFloat -} - -type ProposerThresholdSumAggregates { - "Sum of value across the matching connection" - value: BigInt! -} - -type ProposerThresholdVariancePopulationAggregates { - "Population variance of value across the matching connection" - value: BigFloat -} - -type ProposerThresholdVarianceSampleAggregates { - "Sample variance of value across the matching connection" - value: BigFloat -} - -"A connection to a list of `ProposerThreshold` values." -type ProposerThresholdsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposerThresholdAggregates - "A list of edges which contains the `ProposerThreshold` and cursor to aid in pagination." - edges: [ProposerThresholdsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposerThreshold` for these aggregates." - groupBy: [ProposerThresholdsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposerThresholdsHavingInput - ): [ProposerThresholdAggregates!] - "A list of `ProposerThreshold` objects." - nodes: [ProposerThreshold]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposerThreshold` you could get from the connection." - totalCount: Int! -} - -"A `ProposerThreshold` edge in the connection." -type ProposerThresholdsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposerThreshold` at the end of the edge." - node: ProposerThreshold -} - -"A connection to a list of `Proposer` values." -type ProposersConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposerAggregates - "A list of edges which contains the `Proposer` and cursor to aid in pagination." - edges: [ProposersEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Proposer` for these aggregates." - groupBy: [ProposersGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposersHavingInput - ): [ProposerAggregates!] - "A list of `Proposer` objects." - nodes: [Proposer]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Proposer` you could get from the connection." - totalCount: Int! -} - -"A `Proposer` edge in the connection." -type ProposersEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Proposer` at the end of the edge." - node: Proposer -} - -type PublicKey implements Node { - "Reads a single `Block` that is related to this `PublicKey`." - block: Block - blockId: String! - "Reads and enables pagination through a set of `Block`." - blocksBySessionPublicKeyIdAndBlockId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection! - compressed: String - history: JSON! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads and enables pagination through a set of `Session`." - sessions( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionsConnection! - uncompressed: String -} - -type PublicKeyAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: PublicKeyDistinctCountAggregates - keys: [String!] -} - -"A connection to a list of `Block` values, with data from `Session`." -type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: BlockAggregates - "A list of edges which contains the `Block`, info from the `Session`, and the cursor to aid in pagination." - edges: [PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Block` for these aggregates." - groupBy: [BlocksGroupBy!]!, - "Conditions on the grouped aggregates." - having: BlocksHavingInput - ): [BlockAggregates!] - "A list of `Block` objects." - nodes: [Block]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Block` you could get from the connection." - totalCount: Int! -} - -"A `Block` edge in the connection, with data from `Session`." -type PublicKeyBlocksBySessionPublicKeyIdAndBlockIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Block` at the end of the edge." - node: Block - "Reads and enables pagination through a set of `Session`." - sessions( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionsConnection! -} - -type PublicKeyDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of compressed across the matching connection" - compressed: BigInt - "Distinct count of history across the matching connection" - history: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of uncompressed across the matching connection" - uncompressed: BigInt -} - -"A connection to a list of `PublicKey` values." -type PublicKeysConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: PublicKeyAggregates - "A list of edges which contains the `PublicKey` and cursor to aid in pagination." - edges: [PublicKeysEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `PublicKey` for these aggregates." - groupBy: [PublicKeysGroupBy!]!, - "Conditions on the grouped aggregates." - having: PublicKeysHavingInput - ): [PublicKeyAggregates!] - "A list of `PublicKey` objects." - nodes: [PublicKey]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `PublicKey` you could get from the connection." - totalCount: Int! -} - -"A `PublicKey` edge in the connection." -type PublicKeysEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `PublicKey` at the end of the edge." - node: PublicKey -} - -"The root query type which gives access points into the data universe." -type Query implements Node { - _metadata: _Metadata - account(id: String!): Account - "Reads a single `Account` using its globally unique `ID`." - accountByNodeId( - "The globally unique `ID` to be used in selecting a single `Account`." - nodeId: ID! - ): Account - "Reads and enables pagination through a set of `Account`." - accounts( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): AccountsConnection - "Reads and enables pagination through a set of `Authority`." - authorities( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AuthorityFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Authority`." - orderBy: [AuthoritiesOrderBy!] = [PRIMARY_KEY_ASC] - ): AuthoritiesConnection - authority(id: String!): Authority - "Reads a single `Authority` using its globally unique `ID`." - authorityByNodeId( - "The globally unique `ID` to be used in selecting a single `Authority`." - nodeId: ID! - ): Authority - block(id: String!): Block - "Reads a single `Block` using its globally unique `ID`." - blockByNodeId( - "The globally unique `ID` to be used in selecting a single `Block`." - nodeId: ID! - ): Block - "Reads and enables pagination through a set of `Block`." - blocks( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: BlockFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Block`." - orderBy: [BlocksOrderBy!] = [PRIMARY_KEY_ASC] - ): BlocksConnection - countryCode(id: String!): CountryCode - "Reads a single `CountryCode` using its globally unique `ID`." - countryCodeByNodeId( - "The globally unique `ID` to be used in selecting a single `CountryCode`." - nodeId: ID! - ): CountryCode - "Reads and enables pagination through a set of `CountryCode`." - countryCodes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: CountryCodeFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `CountryCode`." - orderBy: [CountryCodesOrderBy!] = [PRIMARY_KEY_ASC] - ): CountryCodesConnection - event(id: String!): Event - "Reads a single `Event` using its globally unique `ID`." - eventByNodeId( - "The globally unique `ID` to be used in selecting a single `Event`." - nodeId: ID! - ): Event - "Reads and enables pagination through a set of `Event`." - events( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: EventFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Event`." - orderBy: [EventsOrderBy!] = [PRIMARY_KEY_ASC] - ): EventsConnection - extrinsic(id: String!): Extrinsic - "Reads a single `Extrinsic` using its globally unique `ID`." - extrinsicByNodeId( - "The globally unique `ID` to be used in selecting a single `Extrinsic`." - nodeId: ID! - ): Extrinsic - "Reads and enables pagination through a set of `Extrinsic`." - extrinsics( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ExtrinsicFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Extrinsic`." - orderBy: [ExtrinsicsOrderBy!] = [PRIMARY_KEY_ASC] - ): ExtrinsicsConnection - heartBeat(id: String!): HeartBeat - "Reads a single `HeartBeat` using its globally unique `ID`." - heartBeatByNodeId( - "The globally unique `ID` to be used in selecting a single `HeartBeat`." - nodeId: ID! - ): HeartBeat - "Reads and enables pagination through a set of `HeartBeat`." - heartBeats( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: HeartBeatFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `HeartBeat`." - orderBy: [HeartBeatsOrderBy!] = [PRIMARY_KEY_ASC] - ): HeartBeatsConnection - keygenThreshold(id: String!): KeygenThreshold - "Reads a single `KeygenThreshold` using its globally unique `ID`." - keygenThresholdByNodeId( - "The globally unique `ID` to be used in selecting a single `KeygenThreshold`." - nodeId: ID! - ): KeygenThreshold - "Reads and enables pagination through a set of `KeygenThreshold`." - keygenThresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: KeygenThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `KeygenThreshold`." - orderBy: [KeygenThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): KeygenThresholdsConnection - "Fetches an object given its globally unique `ID`." - node( - "The globally unique `ID`." - nodeId: ID! - ): Node - "The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`." - nodeId: ID! - proposalCounter(id: String!): ProposalCounter - "Reads a single `ProposalCounter` using its globally unique `ID`." - proposalCounterByNodeId( - "The globally unique `ID` to be used in selecting a single `ProposalCounter`." - nodeId: ID! - ): ProposalCounter - "Reads and enables pagination through a set of `ProposalCounter`." - proposalCounters( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalCounterFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalCounter`." - orderBy: [ProposalCountersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalCountersConnection - proposalItem(id: String!): ProposalItem - "Reads a single `ProposalItem` using its globally unique `ID`." - proposalItemByNodeId( - "The globally unique `ID` to be used in selecting a single `ProposalItem`." - nodeId: ID! - ): ProposalItem - "Reads and enables pagination through a set of `ProposalItem`." - proposalItems( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalItem`." - orderBy: [ProposalItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalItemsConnection - proposalTimelineStatus(id: String!): ProposalTimelineStatus - "Reads a single `ProposalTimelineStatus` using its globally unique `ID`." - proposalTimelineStatusByNodeId( - "The globally unique `ID` to be used in selecting a single `ProposalTimelineStatus`." - nodeId: ID! - ): ProposalTimelineStatus - "Reads and enables pagination through a set of `ProposalTimelineStatus`." - proposalTimelineStatuses( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalTimelineStatusFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalTimelineStatus`." - orderBy: [ProposalTimelineStatusesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalTimelineStatusesConnection - proposalVote(id: String!): ProposalVote - "Reads a single `ProposalVote` using its globally unique `ID`." - proposalVoteByNodeId( - "The globally unique `ID` to be used in selecting a single `ProposalVote`." - nodeId: ID! - ): ProposalVote - "Reads and enables pagination through a set of `ProposalVote`." - proposalVotes( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalVoteFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalVote`." - orderBy: [ProposalVotesOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposalVotesConnection - proposer(id: String!): Proposer - "Reads a single `Proposer` using its globally unique `ID`." - proposerByNodeId( - "The globally unique `ID` to be used in selecting a single `Proposer`." - nodeId: ID! - ): Proposer - proposerThreshold(id: String!): ProposerThreshold - "Reads a single `ProposerThreshold` using its globally unique `ID`." - proposerThresholdByNodeId( - "The globally unique `ID` to be used in selecting a single `ProposerThreshold`." - nodeId: ID! - ): ProposerThreshold - "Reads and enables pagination through a set of `ProposerThreshold`." - proposerThresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposerThreshold`." - orderBy: [ProposerThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposerThresholdsConnection - "Reads and enables pagination through a set of `Proposer`." - proposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Proposer`." - orderBy: [ProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): ProposersConnection - publicKey(id: String!): PublicKey - "Reads a single `PublicKey` using its globally unique `ID`." - publicKeyByNodeId( - "The globally unique `ID` to be used in selecting a single `PublicKey`." - nodeId: ID! - ): PublicKey - "Reads and enables pagination through a set of `PublicKey`." - publicKeys( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: PublicKeyFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `PublicKey`." - orderBy: [PublicKeysOrderBy!] = [PRIMARY_KEY_ASC] - ): PublicKeysConnection - """ - - Exposes the root query type nested one level down. This is helpful for Relay 1 - which can only query top level fields if they are in a particular form. - """ - query: Query! - session(id: String!): Session - "Reads a single `Session` using its globally unique `ID`." - sessionByNodeId( - "The globally unique `ID` to be used in selecting a single `Session`." - nodeId: ID! - ): Session - sessionProposer(id: String!): SessionProposer - "Reads a single `SessionProposer` using its globally unique `ID`." - sessionProposerByNodeId( - "The globally unique `ID` to be used in selecting a single `SessionProposer`." - nodeId: ID! - ): SessionProposer - "Reads and enables pagination through a set of `SessionProposer`." - sessionProposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionProposer`." - orderBy: [SessionProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionProposersConnection - sessionValidator(id: String!): SessionValidator - "Reads a single `SessionValidator` using its globally unique `ID`." - sessionValidatorByNodeId( - "The globally unique `ID` to be used in selecting a single `SessionValidator`." - nodeId: ID! - ): SessionValidator - "Reads and enables pagination through a set of `SessionValidator`." - sessionValidators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionValidator`." - orderBy: [SessionValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionValidatorsConnection - "Reads and enables pagination through a set of `Session`." - sessions( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionsConnection - signatureThreshold(id: String!): SignatureThreshold - "Reads a single `SignatureThreshold` using its globally unique `ID`." - signatureThresholdByNodeId( - "The globally unique `ID` to be used in selecting a single `SignatureThreshold`." - nodeId: ID! - ): SignatureThreshold - "Reads and enables pagination through a set of `SignatureThreshold`." - signatureThresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SignatureThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SignatureThreshold`." - orderBy: [SignatureThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): SignatureThresholdsConnection - threshold(id: String!): Threshold - "Reads a single `Threshold` using its globally unique `ID`." - thresholdByNodeId( - "The globally unique `ID` to be used in selecting a single `Threshold`." - nodeId: ID! - ): Threshold - "Reads and enables pagination through a set of `Threshold`." - thresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Threshold`." - orderBy: [ThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): ThresholdsConnection - unsignedProposalsQueue(id: String!): UnsignedProposalsQueue - "Reads a single `UnsignedProposalsQueue` using its globally unique `ID`." - unsignedProposalsQueueByNodeId( - "The globally unique `ID` to be used in selecting a single `UnsignedProposalsQueue`." - nodeId: ID! - ): UnsignedProposalsQueue - unsignedProposalsQueueItem(id: String!): UnsignedProposalsQueueItem - "Reads a single `UnsignedProposalsQueueItem` using its globally unique `ID`." - unsignedProposalsQueueItemByNodeId( - "The globally unique `ID` to be used in selecting a single `UnsignedProposalsQueueItem`." - nodeId: ID! - ): UnsignedProposalsQueueItem - "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`." - unsignedProposalsQueueItems( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueueItem`." - orderBy: [UnsignedProposalsQueueItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueueItemsConnection - "Reads and enables pagination through a set of `UnsignedProposalsQueue`." - unsignedProposalsQueues( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueue`." - orderBy: [UnsignedProposalsQueuesOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueuesConnection - validator(id: String!): Validator - "Reads a single `Validator` using its globally unique `ID`." - validatorByNodeId( - "The globally unique `ID` to be used in selecting a single `Validator`." - nodeId: ID! - ): Validator - "Reads and enables pagination through a set of `Validator`." - validators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Validator`." - orderBy: [ValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): ValidatorsConnection -} - -type Session implements Node { - "Reads and enables pagination through a set of `Account`." - accountsByHeartBeatSessionIdAndAccountId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: AccountFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Account`." - orderBy: [AccountsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection! - "Reads a single `Block` that is related to this `Session`." - block: Block - blockId: String! - blockNumber: Int! - "Reads and enables pagination through a set of `HeartBeat`." - heartBeats( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: HeartBeatFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `HeartBeat`." - orderBy: [HeartBeatsOrderBy!] = [PRIMARY_KEY_ASC] - ): HeartBeatsConnection! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads and enables pagination through a set of `Proposer`." - proposersBySessionProposerSessionIdAndProposerId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Proposer`." - orderBy: [ProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection! - "Reads a single `PublicKey` that is related to this `Session`." - publicKey: PublicKey - publicKeyId: String - "Reads and enables pagination through a set of `SessionProposer`." - sessionProposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionProposer`." - orderBy: [SessionProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionProposersConnection! - "Reads and enables pagination through a set of `SessionValidator`." - sessionValidators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionValidator`." - orderBy: [SessionValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionValidatorsConnection! - "Reads and enables pagination through a set of `Threshold`." - thresholds( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ThresholdFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Threshold`." - orderBy: [ThresholdsOrderBy!] = [PRIMARY_KEY_ASC] - ): ThresholdsConnection! - "Reads and enables pagination through a set of `Validator`." - validatorsBySessionValidatorSessionIdAndValidatorId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Validator`." - orderBy: [ValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection! -} - -"A connection to a list of `Account` values, with data from `HeartBeat`." -type SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: AccountAggregates - "A list of edges which contains the `Account`, info from the `HeartBeat`, and the cursor to aid in pagination." - edges: [SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Account` for these aggregates." - groupBy: [AccountsGroupBy!]!, - "Conditions on the grouped aggregates." - having: AccountsHavingInput - ): [AccountAggregates!] - "A list of `Account` objects." - nodes: [Account]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Account` you could get from the connection." - totalCount: Int! -} - -"A `Account` edge in the connection, with data from `HeartBeat`." -type SessionAccountsByHeartBeatSessionIdAndAccountIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "Reads and enables pagination through a set of `HeartBeat`." - heartBeats( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: HeartBeatFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `HeartBeat`." - orderBy: [HeartBeatsOrderBy!] = [PRIMARY_KEY_ASC] - ): HeartBeatsConnection! - "The `Account` at the end of the edge." - node: Account -} - -type SessionAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: SessionAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: SessionDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: SessionMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: SessionMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: SessionStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: SessionStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: SessionSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: SessionVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: SessionVarianceSampleAggregates -} - -type SessionAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type SessionDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of publicKeyId across the matching connection" - publicKeyId: BigInt -} - -type SessionMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: Int -} - -type SessionMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: Int -} - -type SessionProposer implements Node { - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads a single `Proposer` that is related to this `SessionProposer`." - proposer: Proposer - proposerId: String! - "Reads a single `Session` that is related to this `SessionProposer`." - session: Session - sessionId: String! -} - -type SessionProposerAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: SessionProposerDistinctCountAggregates - keys: [String!] -} - -type SessionProposerDistinctCountAggregates { - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of proposerId across the matching connection" - proposerId: BigInt - "Distinct count of sessionId across the matching connection" - sessionId: BigInt -} - -"A connection to a list of `Proposer` values, with data from `SessionProposer`." -type SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposerAggregates - "A list of edges which contains the `Proposer`, info from the `SessionProposer`, and the cursor to aid in pagination." - edges: [SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Proposer` for these aggregates." - groupBy: [ProposersGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposersHavingInput - ): [ProposerAggregates!] - "A list of `Proposer` objects." - nodes: [Proposer]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Proposer` you could get from the connection." - totalCount: Int! -} - -"A `Proposer` edge in the connection, with data from `SessionProposer`." -type SessionProposersBySessionProposerSessionIdAndProposerIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Proposer` at the end of the edge." - node: Proposer - "Reads and enables pagination through a set of `SessionProposer`." - sessionProposers( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionProposerFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionProposer`." - orderBy: [SessionProposersOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionProposersConnection! -} - -"A connection to a list of `SessionProposer` values." -type SessionProposersConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SessionProposerAggregates - "A list of edges which contains the `SessionProposer` and cursor to aid in pagination." - edges: [SessionProposersEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `SessionProposer` for these aggregates." - groupBy: [SessionProposersGroupBy!]!, - "Conditions on the grouped aggregates." - having: SessionProposersHavingInput - ): [SessionProposerAggregates!] - "A list of `SessionProposer` objects." - nodes: [SessionProposer]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `SessionProposer` you could get from the connection." - totalCount: Int! -} - -"A `SessionProposer` edge in the connection." -type SessionProposersEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `SessionProposer` at the end of the edge." - node: SessionProposer -} - -type SessionStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type SessionStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type SessionSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigInt! -} - -type SessionValidator implements Node { - bestOrder: Int! - blockNumber: BigFloat! - id: String! - isBest: Boolean! - isNext: Boolean! - isNextBest: Boolean! - nextBestOrder: Int! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - reputation: Int! - "Reads a single `Session` that is related to this `SessionValidator`." - session: Session - sessionId: String! - uptime: Int! - "Reads a single `Validator` that is related to this `SessionValidator`." - validator: Validator - validatorId: String! -} - -type SessionValidatorAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: SessionValidatorAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: SessionValidatorDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: SessionValidatorMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: SessionValidatorMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: SessionValidatorStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: SessionValidatorStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: SessionValidatorSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: SessionValidatorVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: SessionValidatorVarianceSampleAggregates -} - -type SessionValidatorAverageAggregates { - "Mean average of bestOrder across the matching connection" - bestOrder: BigFloat - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat - "Mean average of nextBestOrder across the matching connection" - nextBestOrder: BigFloat - "Mean average of reputation across the matching connection" - reputation: BigFloat - "Mean average of uptime across the matching connection" - uptime: BigFloat -} - -type SessionValidatorDistinctCountAggregates { - "Distinct count of bestOrder across the matching connection" - bestOrder: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of isBest across the matching connection" - isBest: BigInt - "Distinct count of isNext across the matching connection" - isNext: BigInt - "Distinct count of isNextBest across the matching connection" - isNextBest: BigInt - "Distinct count of nextBestOrder across the matching connection" - nextBestOrder: BigInt - "Distinct count of reputation across the matching connection" - reputation: BigInt - "Distinct count of sessionId across the matching connection" - sessionId: BigInt - "Distinct count of uptime across the matching connection" - uptime: BigInt - "Distinct count of validatorId across the matching connection" - validatorId: BigInt -} - -type SessionValidatorMaxAggregates { - "Maximum of bestOrder across the matching connection" - bestOrder: Int - "Maximum of blockNumber across the matching connection" - blockNumber: BigFloat - "Maximum of nextBestOrder across the matching connection" - nextBestOrder: Int - "Maximum of reputation across the matching connection" - reputation: Int - "Maximum of uptime across the matching connection" - uptime: Int -} - -type SessionValidatorMinAggregates { - "Minimum of bestOrder across the matching connection" - bestOrder: Int - "Minimum of blockNumber across the matching connection" - blockNumber: BigFloat - "Minimum of nextBestOrder across the matching connection" - nextBestOrder: Int - "Minimum of reputation across the matching connection" - reputation: Int - "Minimum of uptime across the matching connection" - uptime: Int -} - -type SessionValidatorStddevPopulationAggregates { - "Population standard deviation of bestOrder across the matching connection" - bestOrder: BigFloat - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Population standard deviation of nextBestOrder across the matching connection" - nextBestOrder: BigFloat - "Population standard deviation of reputation across the matching connection" - reputation: BigFloat - "Population standard deviation of uptime across the matching connection" - uptime: BigFloat -} - -type SessionValidatorStddevSampleAggregates { - "Sample standard deviation of bestOrder across the matching connection" - bestOrder: BigFloat - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample standard deviation of nextBestOrder across the matching connection" - nextBestOrder: BigFloat - "Sample standard deviation of reputation across the matching connection" - reputation: BigFloat - "Sample standard deviation of uptime across the matching connection" - uptime: BigFloat -} - -type SessionValidatorSumAggregates { - "Sum of bestOrder across the matching connection" - bestOrder: BigInt! - "Sum of blockNumber across the matching connection" - blockNumber: BigFloat! - "Sum of nextBestOrder across the matching connection" - nextBestOrder: BigInt! - "Sum of reputation across the matching connection" - reputation: BigInt! - "Sum of uptime across the matching connection" - uptime: BigInt! -} - -type SessionValidatorVariancePopulationAggregates { - "Population variance of bestOrder across the matching connection" - bestOrder: BigFloat - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Population variance of nextBestOrder across the matching connection" - nextBestOrder: BigFloat - "Population variance of reputation across the matching connection" - reputation: BigFloat - "Population variance of uptime across the matching connection" - uptime: BigFloat -} - -type SessionValidatorVarianceSampleAggregates { - "Sample variance of bestOrder across the matching connection" - bestOrder: BigFloat - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat - "Sample variance of nextBestOrder across the matching connection" - nextBestOrder: BigFloat - "Sample variance of reputation across the matching connection" - reputation: BigFloat - "Sample variance of uptime across the matching connection" - uptime: BigFloat -} - -"A connection to a list of `Validator` values, with data from `SessionValidator`." -type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ValidatorAggregates - "A list of edges which contains the `Validator`, info from the `SessionValidator`, and the cursor to aid in pagination." - edges: [SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Validator` for these aggregates." - groupBy: [ValidatorsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ValidatorsHavingInput - ): [ValidatorAggregates!] - "A list of `Validator` objects." - nodes: [Validator]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Validator` you could get from the connection." - totalCount: Int! -} - -"A `Validator` edge in the connection, with data from `SessionValidator`." -type SessionValidatorsBySessionValidatorSessionIdAndValidatorIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Validator` at the end of the edge." - node: Validator - "Reads and enables pagination through a set of `SessionValidator`." - sessionValidators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionValidator`." - orderBy: [SessionValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionValidatorsConnection! -} - -"A connection to a list of `SessionValidator` values." -type SessionValidatorsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SessionValidatorAggregates - "A list of edges which contains the `SessionValidator` and cursor to aid in pagination." - edges: [SessionValidatorsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `SessionValidator` for these aggregates." - groupBy: [SessionValidatorsGroupBy!]!, - "Conditions on the grouped aggregates." - having: SessionValidatorsHavingInput - ): [SessionValidatorAggregates!] - "A list of `SessionValidator` objects." - nodes: [SessionValidator]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `SessionValidator` you could get from the connection." - totalCount: Int! -} - -"A `SessionValidator` edge in the connection." -type SessionValidatorsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `SessionValidator` at the end of the edge." - node: SessionValidator -} - -type SessionVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type SessionVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -"A connection to a list of `Session` values." -type SessionsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SessionAggregates - "A list of edges which contains the `Session` and cursor to aid in pagination." - edges: [SessionsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Session` for these aggregates." - groupBy: [SessionsGroupBy!]!, - "Conditions on the grouped aggregates." - having: SessionsHavingInput - ): [SessionAggregates!] - "A list of `Session` objects." - nodes: [Session]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Session` you could get from the connection." - totalCount: Int! -} - -"A `Session` edge in the connection." -type SessionsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Session` at the end of the edge." - node: Session -} - -type SignatureThreshold implements Node { - "Reads a single `Block` that is related to this `SignatureThreshold`." - block: Block - blockId: String! - current: Int - id: String! - next: Int - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - pending: Int -} - -type SignatureThresholdAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: SignatureThresholdAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: SignatureThresholdDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: SignatureThresholdMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: SignatureThresholdMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: SignatureThresholdStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: SignatureThresholdStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: SignatureThresholdSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: SignatureThresholdVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: SignatureThresholdVarianceSampleAggregates -} - -type SignatureThresholdAverageAggregates { - "Mean average of current across the matching connection" - current: BigFloat - "Mean average of next across the matching connection" - next: BigFloat - "Mean average of pending across the matching connection" - pending: BigFloat -} - -type SignatureThresholdDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of current across the matching connection" - current: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of next across the matching connection" - next: BigInt - "Distinct count of pending across the matching connection" - pending: BigInt -} - -type SignatureThresholdMaxAggregates { - "Maximum of current across the matching connection" - current: Int - "Maximum of next across the matching connection" - next: Int - "Maximum of pending across the matching connection" - pending: Int -} - -type SignatureThresholdMinAggregates { - "Minimum of current across the matching connection" - current: Int - "Minimum of next across the matching connection" - next: Int - "Minimum of pending across the matching connection" - pending: Int -} - -type SignatureThresholdStddevPopulationAggregates { - "Population standard deviation of current across the matching connection" - current: BigFloat - "Population standard deviation of next across the matching connection" - next: BigFloat - "Population standard deviation of pending across the matching connection" - pending: BigFloat -} - -type SignatureThresholdStddevSampleAggregates { - "Sample standard deviation of current across the matching connection" - current: BigFloat - "Sample standard deviation of next across the matching connection" - next: BigFloat - "Sample standard deviation of pending across the matching connection" - pending: BigFloat -} - -type SignatureThresholdSumAggregates { - "Sum of current across the matching connection" - current: BigInt! - "Sum of next across the matching connection" - next: BigInt! - "Sum of pending across the matching connection" - pending: BigInt! -} - -type SignatureThresholdVariancePopulationAggregates { - "Population variance of current across the matching connection" - current: BigFloat - "Population variance of next across the matching connection" - next: BigFloat - "Population variance of pending across the matching connection" - pending: BigFloat -} - -type SignatureThresholdVarianceSampleAggregates { - "Sample variance of current across the matching connection" - current: BigFloat - "Sample variance of next across the matching connection" - next: BigFloat - "Sample variance of pending across the matching connection" - pending: BigFloat -} - -"A connection to a list of `SignatureThreshold` values." -type SignatureThresholdsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SignatureThresholdAggregates - "A list of edges which contains the `SignatureThreshold` and cursor to aid in pagination." - edges: [SignatureThresholdsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `SignatureThreshold` for these aggregates." - groupBy: [SignatureThresholdsGroupBy!]!, - "Conditions on the grouped aggregates." - having: SignatureThresholdsHavingInput - ): [SignatureThresholdAggregates!] - "A list of `SignatureThreshold` objects." - nodes: [SignatureThreshold]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `SignatureThreshold` you could get from the connection." - totalCount: Int! -} - -"A `SignatureThreshold` edge in the connection." -type SignatureThresholdsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `SignatureThreshold` at the end of the edge." - node: SignatureThreshold -} - -type TableEstimate { - estimate: Int - table: String -} - -type Threshold implements Node { - current: Int! - id: String! - next: Int! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - pending: Int! - "Reads a single `Session` that is related to this `Threshold`." - session: Session - sessionId: String! - variant: AppEnum790A3Fe4Ce! -} - -type ThresholdAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: ThresholdAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ThresholdDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: ThresholdMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: ThresholdMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: ThresholdStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: ThresholdStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: ThresholdSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: ThresholdVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: ThresholdVarianceSampleAggregates -} - -type ThresholdAverageAggregates { - "Mean average of current across the matching connection" - current: BigFloat - "Mean average of next across the matching connection" - next: BigFloat - "Mean average of pending across the matching connection" - pending: BigFloat -} - -type ThresholdDistinctCountAggregates { - "Distinct count of current across the matching connection" - current: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of next across the matching connection" - next: BigInt - "Distinct count of pending across the matching connection" - pending: BigInt - "Distinct count of sessionId across the matching connection" - sessionId: BigInt - "Distinct count of variant across the matching connection" - variant: BigInt -} - -type ThresholdMaxAggregates { - "Maximum of current across the matching connection" - current: Int - "Maximum of next across the matching connection" - next: Int - "Maximum of pending across the matching connection" - pending: Int -} - -type ThresholdMinAggregates { - "Minimum of current across the matching connection" - current: Int - "Minimum of next across the matching connection" - next: Int - "Minimum of pending across the matching connection" - pending: Int -} - -type ThresholdStddevPopulationAggregates { - "Population standard deviation of current across the matching connection" - current: BigFloat - "Population standard deviation of next across the matching connection" - next: BigFloat - "Population standard deviation of pending across the matching connection" - pending: BigFloat -} - -type ThresholdStddevSampleAggregates { - "Sample standard deviation of current across the matching connection" - current: BigFloat - "Sample standard deviation of next across the matching connection" - next: BigFloat - "Sample standard deviation of pending across the matching connection" - pending: BigFloat -} - -type ThresholdSumAggregates { - "Sum of current across the matching connection" - current: BigInt! - "Sum of next across the matching connection" - next: BigInt! - "Sum of pending across the matching connection" - pending: BigInt! -} - -type ThresholdVariancePopulationAggregates { - "Population variance of current across the matching connection" - current: BigFloat - "Population variance of next across the matching connection" - next: BigFloat - "Population variance of pending across the matching connection" - pending: BigFloat -} - -type ThresholdVarianceSampleAggregates { - "Sample variance of current across the matching connection" - current: BigFloat - "Sample variance of next across the matching connection" - next: BigFloat - "Sample variance of pending across the matching connection" - pending: BigFloat -} - -"A connection to a list of `Threshold` values." -type ThresholdsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ThresholdAggregates - "A list of edges which contains the `Threshold` and cursor to aid in pagination." - edges: [ThresholdsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Threshold` for these aggregates." - groupBy: [ThresholdsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ThresholdsHavingInput - ): [ThresholdAggregates!] - "A list of `Threshold` objects." - nodes: [Threshold]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Threshold` you could get from the connection." - totalCount: Int! -} - -"A `Threshold` edge in the connection." -type ThresholdsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Threshold` at the end of the edge." - node: Threshold -} - -type UnsignedProposalsQueue implements Node { - "Reads a single `Block` that is related to this `UnsignedProposalsQueue`." - block: Block - blockId: String! - blockNumber: Int! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads and enables pagination through a set of `ProposalItem`." - proposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: ProposalItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `ProposalItem`." - orderBy: [ProposalItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection! - "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`." - unsignedProposalsQueueItemsByQueueId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueueItem`." - orderBy: [UnsignedProposalsQueueItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueueItemsConnection! -} - -type UnsignedProposalsQueueAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: UnsignedProposalsQueueAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: UnsignedProposalsQueueDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: UnsignedProposalsQueueMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: UnsignedProposalsQueueMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: UnsignedProposalsQueueStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: UnsignedProposalsQueueStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: UnsignedProposalsQueueSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: UnsignedProposalsQueueVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: UnsignedProposalsQueueVarianceSampleAggregates -} - -type UnsignedProposalsQueueAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueDistinctCountAggregates { - "Distinct count of blockId across the matching connection" - blockId: BigInt - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt -} - -type UnsignedProposalsQueueItem implements Node { - blockNumber: Int! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads a single `ProposalItem` that is related to this `UnsignedProposalsQueueItem`." - proposal: ProposalItem - proposalId: String! - "Reads a single `UnsignedProposalsQueue` that is related to this `UnsignedProposalsQueueItem`." - queue: UnsignedProposalsQueue - queueId: String! -} - -type UnsignedProposalsQueueItemAggregates { - "Mean average aggregates across the matching connection (ignoring before/after/first/last/offset)" - average: UnsignedProposalsQueueItemAverageAggregates - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: UnsignedProposalsQueueItemDistinctCountAggregates - keys: [String!] - "Maximum aggregates across the matching connection (ignoring before/after/first/last/offset)" - max: UnsignedProposalsQueueItemMaxAggregates - "Minimum aggregates across the matching connection (ignoring before/after/first/last/offset)" - min: UnsignedProposalsQueueItemMinAggregates - "Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevPopulation: UnsignedProposalsQueueItemStddevPopulationAggregates - "Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset)" - stddevSample: UnsignedProposalsQueueItemStddevSampleAggregates - "Sum aggregates across the matching connection (ignoring before/after/first/last/offset)" - sum: UnsignedProposalsQueueItemSumAggregates - "Population variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - variancePopulation: UnsignedProposalsQueueItemVariancePopulationAggregates - "Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset)" - varianceSample: UnsignedProposalsQueueItemVarianceSampleAggregates -} - -type UnsignedProposalsQueueItemAverageAggregates { - "Mean average of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueItemDistinctCountAggregates { - "Distinct count of blockNumber across the matching connection" - blockNumber: BigInt - "Distinct count of id across the matching connection" - id: BigInt - "Distinct count of proposalId across the matching connection" - proposalId: BigInt - "Distinct count of queueId across the matching connection" - queueId: BigInt -} - -type UnsignedProposalsQueueItemMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: Int -} - -type UnsignedProposalsQueueItemMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: Int -} - -type UnsignedProposalsQueueItemStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueItemStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueItemSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigInt! -} - -type UnsignedProposalsQueueItemVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueItemVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -"A connection to a list of `UnsignedProposalsQueueItem` values." -type UnsignedProposalsQueueItemsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: UnsignedProposalsQueueItemAggregates - "A list of edges which contains the `UnsignedProposalsQueueItem` and cursor to aid in pagination." - edges: [UnsignedProposalsQueueItemsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `UnsignedProposalsQueueItem` for these aggregates." - groupBy: [UnsignedProposalsQueueItemsGroupBy!]!, - "Conditions on the grouped aggregates." - having: UnsignedProposalsQueueItemsHavingInput - ): [UnsignedProposalsQueueItemAggregates!] - "A list of `UnsignedProposalsQueueItem` objects." - nodes: [UnsignedProposalsQueueItem]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `UnsignedProposalsQueueItem` you could get from the connection." - totalCount: Int! -} - -"A `UnsignedProposalsQueueItem` edge in the connection." -type UnsignedProposalsQueueItemsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `UnsignedProposalsQueueItem` at the end of the edge." - node: UnsignedProposalsQueueItem -} - -type UnsignedProposalsQueueMaxAggregates { - "Maximum of blockNumber across the matching connection" - blockNumber: Int -} - -type UnsignedProposalsQueueMinAggregates { - "Minimum of blockNumber across the matching connection" - blockNumber: Int -} - -"A connection to a list of `ProposalItem` values, with data from `UnsignedProposalsQueueItem`." -type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ProposalItemAggregates - "A list of edges which contains the `ProposalItem`, info from the `UnsignedProposalsQueueItem`, and the cursor to aid in pagination." - edges: [UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `ProposalItem` for these aggregates." - groupBy: [ProposalItemsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ProposalItemsHavingInput - ): [ProposalItemAggregates!] - "A list of `ProposalItem` objects." - nodes: [ProposalItem]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `ProposalItem` you could get from the connection." - totalCount: Int! -} - -"A `ProposalItem` edge in the connection, with data from `UnsignedProposalsQueueItem`." -type UnsignedProposalsQueueProposalItemsByUnsignedProposalsQueueItemQueueIdAndProposalIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `ProposalItem` at the end of the edge." - node: ProposalItem - "Reads and enables pagination through a set of `UnsignedProposalsQueueItem`." - unsignedProposalsQueueItemsByProposalId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: UnsignedProposalsQueueItemFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `UnsignedProposalsQueueItem`." - orderBy: [UnsignedProposalsQueueItemsOrderBy!] = [PRIMARY_KEY_ASC] - ): UnsignedProposalsQueueItemsConnection! -} - -type UnsignedProposalsQueueStddevPopulationAggregates { - "Population standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueStddevSampleAggregates { - "Sample standard deviation of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueSumAggregates { - "Sum of blockNumber across the matching connection" - blockNumber: BigInt! -} - -type UnsignedProposalsQueueVariancePopulationAggregates { - "Population variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -type UnsignedProposalsQueueVarianceSampleAggregates { - "Sample variance of blockNumber across the matching connection" - blockNumber: BigFloat -} - -"A connection to a list of `UnsignedProposalsQueue` values." -type UnsignedProposalsQueuesConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: UnsignedProposalsQueueAggregates - "A list of edges which contains the `UnsignedProposalsQueue` and cursor to aid in pagination." - edges: [UnsignedProposalsQueuesEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `UnsignedProposalsQueue` for these aggregates." - groupBy: [UnsignedProposalsQueuesGroupBy!]!, - "Conditions on the grouped aggregates." - having: UnsignedProposalsQueuesHavingInput - ): [UnsignedProposalsQueueAggregates!] - "A list of `UnsignedProposalsQueue` objects." - nodes: [UnsignedProposalsQueue]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `UnsignedProposalsQueue` you could get from the connection." - totalCount: Int! -} - -"A `UnsignedProposalsQueue` edge in the connection." -type UnsignedProposalsQueuesEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `UnsignedProposalsQueue` at the end of the edge." - node: UnsignedProposalsQueue -} - -type Validator implements Node { - "Reads a single `Account` that is related to this `Validator`." - account: Account - accountId: String! - authorityId: String! - id: String! - "A globally unique identifier. Can be used in various places throughout the system to identify this single value." - nodeId: ID! - "Reads and enables pagination through a set of `SessionValidator`." - sessionValidators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionValidator`." - orderBy: [SessionValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionValidatorsConnection! - "Reads and enables pagination through a set of `Session`." - sessionsBySessionValidatorValidatorIdAndSessionId( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `Session`." - orderBy: [SessionsOrderBy!] = [PRIMARY_KEY_ASC] - ): ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection! -} - -type ValidatorAggregates { - "Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset)" - distinctCount: ValidatorDistinctCountAggregates - keys: [String!] -} - -type ValidatorDistinctCountAggregates { - "Distinct count of accountId across the matching connection" - accountId: BigInt - "Distinct count of authorityId across the matching connection" - authorityId: BigInt - "Distinct count of id across the matching connection" - id: BigInt -} - -"A connection to a list of `Session` values, with data from `SessionValidator`." -type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: SessionAggregates - "A list of edges which contains the `Session`, info from the `SessionValidator`, and the cursor to aid in pagination." - edges: [ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Session` for these aggregates." - groupBy: [SessionsGroupBy!]!, - "Conditions on the grouped aggregates." - having: SessionsHavingInput - ): [SessionAggregates!] - "A list of `Session` objects." - nodes: [Session]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Session` you could get from the connection." - totalCount: Int! -} - -"A `Session` edge in the connection, with data from `SessionValidator`." -type ValidatorSessionsBySessionValidatorValidatorIdAndSessionIdManyToManyEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Session` at the end of the edge." - node: Session - "Reads and enables pagination through a set of `SessionValidator`." - sessionValidators( - "Read all values in the set after (below) this cursor." - after: Cursor, - "Read all values in the set before (above) this cursor." - before: Cursor, - "A filter to be used in determining which values should be returned by the collection." - filter: SessionValidatorFilter, - "Only read the first `n` values of the set." - first: Int, - "Only read the last `n` values of the set." - last: Int, - """ - - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int, - "The method to use when ordering `SessionValidator`." - orderBy: [SessionValidatorsOrderBy!] = [PRIMARY_KEY_ASC] - ): SessionValidatorsConnection! -} - -"A connection to a list of `Validator` values." -type ValidatorsConnection { - "Aggregates across the matching connection (ignoring before/after/first/last/offset)" - aggregates: ValidatorAggregates - "A list of edges which contains the `Validator` and cursor to aid in pagination." - edges: [ValidatorsEdge!]! - "Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)" - groupedAggregates( - "The method to use when grouping `Validator` for these aggregates." - groupBy: [ValidatorsGroupBy!]!, - "Conditions on the grouped aggregates." - having: ValidatorsHavingInput - ): [ValidatorAggregates!] - "A list of `Validator` objects." - nodes: [Validator]! - "Information to aid in pagination." - pageInfo: PageInfo! - "The count of *all* `Validator` you could get from the connection." - totalCount: Int! -} - -"A `Validator` edge in the connection." -type ValidatorsEdge { - "A cursor for use in pagination." - cursor: Cursor - "The `Validator` at the end of the edge." - node: Validator -} - -type _Metadata { - chain: String - dynamicDatasources: String - genesisHash: String - indexerHealthy: Boolean - indexerNodeVersion: String - lastProcessedHeight: Int - lastProcessedTimestamp: Date - queryNodeVersion: String - rowCountEstimate: [TableEstimate] - specName: String - targetHeight: Int -} - -"Grouping methods for `Account` for usage during aggregation." -enum AccountsGroupBy { - COUNTRY_CODE_ID - CREATED_AT - CREATE_AT_BLOCK_ID - CREATOR_ID - DISPLAY - EMAIL - IMAGE - LEGAL - PGP_FINGERPRINT - RIOT - TWITTER - WEB -} - -"Methods to use when ordering `Account`." -enum AccountsOrderBy { - ACCOUNTS_BY_CREATOR_ID_AVERAGE_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_AVERAGE_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_COUNT_ASC - ACCOUNTS_BY_CREATOR_ID_COUNT_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_MAX_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_MAX_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_ID_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_ID_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_MIN_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_MIN_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_ID_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_ID_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_SUM_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_SUM_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_WEB_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_DISPLAY_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_DISPLAY_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EMAIL_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EMAIL_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_IMAGE_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_IMAGE_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_LEGAL_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_LEGAL_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_RIOT_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_RIOT_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_TWITTER_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_TWITTER_DESC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_WEB_ASC - ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_WEB_DESC - COUNTRY_CODE_ID_ASC - COUNTRY_CODE_ID_DESC - CREATED_AT_ASC - CREATED_AT_DESC - CREATE_AT_BLOCK_ID_ASC - CREATE_AT_BLOCK_ID_DESC - CREATOR_ID_ASC - CREATOR_ID_DESC - DISPLAY_ASC - DISPLAY_DESC - EMAIL_ASC - EMAIL_DESC - EXTRINSICS_AVERAGE_ARGUMENTS_ASC - EXTRINSICS_AVERAGE_ARGUMENTS_DESC - EXTRINSICS_AVERAGE_BLOCK_ID_ASC - EXTRINSICS_AVERAGE_BLOCK_ID_DESC - EXTRINSICS_AVERAGE_BLOCK_NUMBER_ASC - EXTRINSICS_AVERAGE_BLOCK_NUMBER_DESC - EXTRINSICS_AVERAGE_HASH_ASC - EXTRINSICS_AVERAGE_HASH_DESC - EXTRINSICS_AVERAGE_ID_ASC - EXTRINSICS_AVERAGE_ID_DESC - EXTRINSICS_AVERAGE_INDEX_ASC - EXTRINSICS_AVERAGE_INDEX_DESC - EXTRINSICS_AVERAGE_IS_SIGNED_ASC - EXTRINSICS_AVERAGE_IS_SIGNED_DESC - EXTRINSICS_AVERAGE_IS_SUCCESS_ASC - EXTRINSICS_AVERAGE_IS_SUCCESS_DESC - EXTRINSICS_AVERAGE_METHOD_ASC - EXTRINSICS_AVERAGE_METHOD_DESC - EXTRINSICS_AVERAGE_MODULE_ASC - EXTRINSICS_AVERAGE_MODULE_DESC - EXTRINSICS_AVERAGE_SIGNER_ID_ASC - EXTRINSICS_AVERAGE_SIGNER_ID_DESC - EXTRINSICS_COUNT_ASC - EXTRINSICS_COUNT_DESC - EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_ASC - EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_DESC - EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC - EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC - EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - EXTRINSICS_DISTINCT_COUNT_HASH_ASC - EXTRINSICS_DISTINCT_COUNT_HASH_DESC - EXTRINSICS_DISTINCT_COUNT_ID_ASC - EXTRINSICS_DISTINCT_COUNT_ID_DESC - EXTRINSICS_DISTINCT_COUNT_INDEX_ASC - EXTRINSICS_DISTINCT_COUNT_INDEX_DESC - EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_ASC - EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_DESC - EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_ASC - EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_DESC - EXTRINSICS_DISTINCT_COUNT_METHOD_ASC - EXTRINSICS_DISTINCT_COUNT_METHOD_DESC - EXTRINSICS_DISTINCT_COUNT_MODULE_ASC - EXTRINSICS_DISTINCT_COUNT_MODULE_DESC - EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_ASC - EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_DESC - EXTRINSICS_MAX_ARGUMENTS_ASC - EXTRINSICS_MAX_ARGUMENTS_DESC - EXTRINSICS_MAX_BLOCK_ID_ASC - EXTRINSICS_MAX_BLOCK_ID_DESC - EXTRINSICS_MAX_BLOCK_NUMBER_ASC - EXTRINSICS_MAX_BLOCK_NUMBER_DESC - EXTRINSICS_MAX_HASH_ASC - EXTRINSICS_MAX_HASH_DESC - EXTRINSICS_MAX_ID_ASC - EXTRINSICS_MAX_ID_DESC - EXTRINSICS_MAX_INDEX_ASC - EXTRINSICS_MAX_INDEX_DESC - EXTRINSICS_MAX_IS_SIGNED_ASC - EXTRINSICS_MAX_IS_SIGNED_DESC - EXTRINSICS_MAX_IS_SUCCESS_ASC - EXTRINSICS_MAX_IS_SUCCESS_DESC - EXTRINSICS_MAX_METHOD_ASC - EXTRINSICS_MAX_METHOD_DESC - EXTRINSICS_MAX_MODULE_ASC - EXTRINSICS_MAX_MODULE_DESC - EXTRINSICS_MAX_SIGNER_ID_ASC - EXTRINSICS_MAX_SIGNER_ID_DESC - EXTRINSICS_MIN_ARGUMENTS_ASC - EXTRINSICS_MIN_ARGUMENTS_DESC - EXTRINSICS_MIN_BLOCK_ID_ASC - EXTRINSICS_MIN_BLOCK_ID_DESC - EXTRINSICS_MIN_BLOCK_NUMBER_ASC - EXTRINSICS_MIN_BLOCK_NUMBER_DESC - EXTRINSICS_MIN_HASH_ASC - EXTRINSICS_MIN_HASH_DESC - EXTRINSICS_MIN_ID_ASC - EXTRINSICS_MIN_ID_DESC - EXTRINSICS_MIN_INDEX_ASC - EXTRINSICS_MIN_INDEX_DESC - EXTRINSICS_MIN_IS_SIGNED_ASC - EXTRINSICS_MIN_IS_SIGNED_DESC - EXTRINSICS_MIN_IS_SUCCESS_ASC - EXTRINSICS_MIN_IS_SUCCESS_DESC - EXTRINSICS_MIN_METHOD_ASC - EXTRINSICS_MIN_METHOD_DESC - EXTRINSICS_MIN_MODULE_ASC - EXTRINSICS_MIN_MODULE_DESC - EXTRINSICS_MIN_SIGNER_ID_ASC - EXTRINSICS_MIN_SIGNER_ID_DESC - EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_ASC - EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_DESC - EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC - EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC - EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - EXTRINSICS_STDDEV_POPULATION_HASH_ASC - EXTRINSICS_STDDEV_POPULATION_HASH_DESC - EXTRINSICS_STDDEV_POPULATION_ID_ASC - EXTRINSICS_STDDEV_POPULATION_ID_DESC - EXTRINSICS_STDDEV_POPULATION_INDEX_ASC - EXTRINSICS_STDDEV_POPULATION_INDEX_DESC - EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_ASC - EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_DESC - EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_ASC - EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_DESC - EXTRINSICS_STDDEV_POPULATION_METHOD_ASC - EXTRINSICS_STDDEV_POPULATION_METHOD_DESC - EXTRINSICS_STDDEV_POPULATION_MODULE_ASC - EXTRINSICS_STDDEV_POPULATION_MODULE_DESC - EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_ASC - EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_DESC - EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_ASC - EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_DESC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - EXTRINSICS_STDDEV_SAMPLE_HASH_ASC - EXTRINSICS_STDDEV_SAMPLE_HASH_DESC - EXTRINSICS_STDDEV_SAMPLE_ID_ASC - EXTRINSICS_STDDEV_SAMPLE_ID_DESC - EXTRINSICS_STDDEV_SAMPLE_INDEX_ASC - EXTRINSICS_STDDEV_SAMPLE_INDEX_DESC - EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_ASC - EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_DESC - EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_ASC - EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_DESC - EXTRINSICS_STDDEV_SAMPLE_METHOD_ASC - EXTRINSICS_STDDEV_SAMPLE_METHOD_DESC - EXTRINSICS_STDDEV_SAMPLE_MODULE_ASC - EXTRINSICS_STDDEV_SAMPLE_MODULE_DESC - EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_ASC - EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_DESC - EXTRINSICS_SUM_ARGUMENTS_ASC - EXTRINSICS_SUM_ARGUMENTS_DESC - EXTRINSICS_SUM_BLOCK_ID_ASC - EXTRINSICS_SUM_BLOCK_ID_DESC - EXTRINSICS_SUM_BLOCK_NUMBER_ASC - EXTRINSICS_SUM_BLOCK_NUMBER_DESC - EXTRINSICS_SUM_HASH_ASC - EXTRINSICS_SUM_HASH_DESC - EXTRINSICS_SUM_ID_ASC - EXTRINSICS_SUM_ID_DESC - EXTRINSICS_SUM_INDEX_ASC - EXTRINSICS_SUM_INDEX_DESC - EXTRINSICS_SUM_IS_SIGNED_ASC - EXTRINSICS_SUM_IS_SIGNED_DESC - EXTRINSICS_SUM_IS_SUCCESS_ASC - EXTRINSICS_SUM_IS_SUCCESS_DESC - EXTRINSICS_SUM_METHOD_ASC - EXTRINSICS_SUM_METHOD_DESC - EXTRINSICS_SUM_MODULE_ASC - EXTRINSICS_SUM_MODULE_DESC - EXTRINSICS_SUM_SIGNER_ID_ASC - EXTRINSICS_SUM_SIGNER_ID_DESC - EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_ASC - EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_DESC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - EXTRINSICS_VARIANCE_POPULATION_HASH_ASC - EXTRINSICS_VARIANCE_POPULATION_HASH_DESC - EXTRINSICS_VARIANCE_POPULATION_ID_ASC - EXTRINSICS_VARIANCE_POPULATION_ID_DESC - EXTRINSICS_VARIANCE_POPULATION_INDEX_ASC - EXTRINSICS_VARIANCE_POPULATION_INDEX_DESC - EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_ASC - EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_DESC - EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_ASC - EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_DESC - EXTRINSICS_VARIANCE_POPULATION_METHOD_ASC - EXTRINSICS_VARIANCE_POPULATION_METHOD_DESC - EXTRINSICS_VARIANCE_POPULATION_MODULE_ASC - EXTRINSICS_VARIANCE_POPULATION_MODULE_DESC - EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_ASC - EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_DESC - EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_ASC - EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_DESC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - EXTRINSICS_VARIANCE_SAMPLE_HASH_ASC - EXTRINSICS_VARIANCE_SAMPLE_HASH_DESC - EXTRINSICS_VARIANCE_SAMPLE_ID_ASC - EXTRINSICS_VARIANCE_SAMPLE_ID_DESC - EXTRINSICS_VARIANCE_SAMPLE_INDEX_ASC - EXTRINSICS_VARIANCE_SAMPLE_INDEX_DESC - EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_ASC - EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_DESC - EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_ASC - EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_DESC - EXTRINSICS_VARIANCE_SAMPLE_METHOD_ASC - EXTRINSICS_VARIANCE_SAMPLE_METHOD_DESC - EXTRINSICS_VARIANCE_SAMPLE_MODULE_ASC - EXTRINSICS_VARIANCE_SAMPLE_MODULE_DESC - EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_ASC - EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_DESC - HEART_BEATS_AVERAGE_ACCOUNT_ID_ASC - HEART_BEATS_AVERAGE_ACCOUNT_ID_DESC - HEART_BEATS_AVERAGE_BLOCK_NUMBER_ASC - HEART_BEATS_AVERAGE_BLOCK_NUMBER_DESC - HEART_BEATS_AVERAGE_ID_ASC - HEART_BEATS_AVERAGE_ID_DESC - HEART_BEATS_AVERAGE_SESSION_ID_ASC - HEART_BEATS_AVERAGE_SESSION_ID_DESC - HEART_BEATS_COUNT_ASC - HEART_BEATS_COUNT_DESC - HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_ASC - HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_DESC - HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - HEART_BEATS_DISTINCT_COUNT_ID_ASC - HEART_BEATS_DISTINCT_COUNT_ID_DESC - HEART_BEATS_DISTINCT_COUNT_SESSION_ID_ASC - HEART_BEATS_DISTINCT_COUNT_SESSION_ID_DESC - HEART_BEATS_MAX_ACCOUNT_ID_ASC - HEART_BEATS_MAX_ACCOUNT_ID_DESC - HEART_BEATS_MAX_BLOCK_NUMBER_ASC - HEART_BEATS_MAX_BLOCK_NUMBER_DESC - HEART_BEATS_MAX_ID_ASC - HEART_BEATS_MAX_ID_DESC - HEART_BEATS_MAX_SESSION_ID_ASC - HEART_BEATS_MAX_SESSION_ID_DESC - HEART_BEATS_MIN_ACCOUNT_ID_ASC - HEART_BEATS_MIN_ACCOUNT_ID_DESC - HEART_BEATS_MIN_BLOCK_NUMBER_ASC - HEART_BEATS_MIN_BLOCK_NUMBER_DESC - HEART_BEATS_MIN_ID_ASC - HEART_BEATS_MIN_ID_DESC - HEART_BEATS_MIN_SESSION_ID_ASC - HEART_BEATS_MIN_SESSION_ID_DESC - HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_ASC - HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_DESC - HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - HEART_BEATS_STDDEV_POPULATION_ID_ASC - HEART_BEATS_STDDEV_POPULATION_ID_DESC - HEART_BEATS_STDDEV_POPULATION_SESSION_ID_ASC - HEART_BEATS_STDDEV_POPULATION_SESSION_ID_DESC - HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_ASC - HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_DESC - HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - HEART_BEATS_STDDEV_SAMPLE_ID_ASC - HEART_BEATS_STDDEV_SAMPLE_ID_DESC - HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_ASC - HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_DESC - HEART_BEATS_SUM_ACCOUNT_ID_ASC - HEART_BEATS_SUM_ACCOUNT_ID_DESC - HEART_BEATS_SUM_BLOCK_NUMBER_ASC - HEART_BEATS_SUM_BLOCK_NUMBER_DESC - HEART_BEATS_SUM_ID_ASC - HEART_BEATS_SUM_ID_DESC - HEART_BEATS_SUM_SESSION_ID_ASC - HEART_BEATS_SUM_SESSION_ID_DESC - HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_ASC - HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_DESC - HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - HEART_BEATS_VARIANCE_POPULATION_ID_ASC - HEART_BEATS_VARIANCE_POPULATION_ID_DESC - HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_ASC - HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_DESC - HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC - HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC - HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - HEART_BEATS_VARIANCE_SAMPLE_ID_ASC - HEART_BEATS_VARIANCE_SAMPLE_ID_DESC - HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_ASC - HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_DESC - ID_ASC - ID_DESC - IMAGE_ASC - IMAGE_DESC - LEGAL_ASC - LEGAL_DESC - NATURAL - PGP_FINGERPRINT_ASC - PGP_FINGERPRINT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSERS_AVERAGE_ACCOUNT_ID_ASC - PROPOSERS_AVERAGE_ACCOUNT_ID_DESC - PROPOSERS_AVERAGE_ID_ASC - PROPOSERS_AVERAGE_ID_DESC - PROPOSERS_COUNT_ASC - PROPOSERS_COUNT_DESC - PROPOSERS_DISTINCT_COUNT_ACCOUNT_ID_ASC - PROPOSERS_DISTINCT_COUNT_ACCOUNT_ID_DESC - PROPOSERS_DISTINCT_COUNT_ID_ASC - PROPOSERS_DISTINCT_COUNT_ID_DESC - PROPOSERS_MAX_ACCOUNT_ID_ASC - PROPOSERS_MAX_ACCOUNT_ID_DESC - PROPOSERS_MAX_ID_ASC - PROPOSERS_MAX_ID_DESC - PROPOSERS_MIN_ACCOUNT_ID_ASC - PROPOSERS_MIN_ACCOUNT_ID_DESC - PROPOSERS_MIN_ID_ASC - PROPOSERS_MIN_ID_DESC - PROPOSERS_STDDEV_POPULATION_ACCOUNT_ID_ASC - PROPOSERS_STDDEV_POPULATION_ACCOUNT_ID_DESC - PROPOSERS_STDDEV_POPULATION_ID_ASC - PROPOSERS_STDDEV_POPULATION_ID_DESC - PROPOSERS_STDDEV_SAMPLE_ACCOUNT_ID_ASC - PROPOSERS_STDDEV_SAMPLE_ACCOUNT_ID_DESC - PROPOSERS_STDDEV_SAMPLE_ID_ASC - PROPOSERS_STDDEV_SAMPLE_ID_DESC - PROPOSERS_SUM_ACCOUNT_ID_ASC - PROPOSERS_SUM_ACCOUNT_ID_DESC - PROPOSERS_SUM_ID_ASC - PROPOSERS_SUM_ID_DESC - PROPOSERS_VARIANCE_POPULATION_ACCOUNT_ID_ASC - PROPOSERS_VARIANCE_POPULATION_ACCOUNT_ID_DESC - PROPOSERS_VARIANCE_POPULATION_ID_ASC - PROPOSERS_VARIANCE_POPULATION_ID_DESC - PROPOSERS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC - PROPOSERS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC - PROPOSERS_VARIANCE_SAMPLE_ID_ASC - PROPOSERS_VARIANCE_SAMPLE_ID_DESC - RIOT_ASC - RIOT_DESC - TWITTER_ASC - TWITTER_DESC - VALIDATORS_AVERAGE_ACCOUNT_ID_ASC - VALIDATORS_AVERAGE_ACCOUNT_ID_DESC - VALIDATORS_AVERAGE_AUTHORITY_ID_ASC - VALIDATORS_AVERAGE_AUTHORITY_ID_DESC - VALIDATORS_AVERAGE_ID_ASC - VALIDATORS_AVERAGE_ID_DESC - VALIDATORS_COUNT_ASC - VALIDATORS_COUNT_DESC - VALIDATORS_DISTINCT_COUNT_ACCOUNT_ID_ASC - VALIDATORS_DISTINCT_COUNT_ACCOUNT_ID_DESC - VALIDATORS_DISTINCT_COUNT_AUTHORITY_ID_ASC - VALIDATORS_DISTINCT_COUNT_AUTHORITY_ID_DESC - VALIDATORS_DISTINCT_COUNT_ID_ASC - VALIDATORS_DISTINCT_COUNT_ID_DESC - VALIDATORS_MAX_ACCOUNT_ID_ASC - VALIDATORS_MAX_ACCOUNT_ID_DESC - VALIDATORS_MAX_AUTHORITY_ID_ASC - VALIDATORS_MAX_AUTHORITY_ID_DESC - VALIDATORS_MAX_ID_ASC - VALIDATORS_MAX_ID_DESC - VALIDATORS_MIN_ACCOUNT_ID_ASC - VALIDATORS_MIN_ACCOUNT_ID_DESC - VALIDATORS_MIN_AUTHORITY_ID_ASC - VALIDATORS_MIN_AUTHORITY_ID_DESC - VALIDATORS_MIN_ID_ASC - VALIDATORS_MIN_ID_DESC - VALIDATORS_STDDEV_POPULATION_ACCOUNT_ID_ASC - VALIDATORS_STDDEV_POPULATION_ACCOUNT_ID_DESC - VALIDATORS_STDDEV_POPULATION_AUTHORITY_ID_ASC - VALIDATORS_STDDEV_POPULATION_AUTHORITY_ID_DESC - VALIDATORS_STDDEV_POPULATION_ID_ASC - VALIDATORS_STDDEV_POPULATION_ID_DESC - VALIDATORS_STDDEV_SAMPLE_ACCOUNT_ID_ASC - VALIDATORS_STDDEV_SAMPLE_ACCOUNT_ID_DESC - VALIDATORS_STDDEV_SAMPLE_AUTHORITY_ID_ASC - VALIDATORS_STDDEV_SAMPLE_AUTHORITY_ID_DESC - VALIDATORS_STDDEV_SAMPLE_ID_ASC - VALIDATORS_STDDEV_SAMPLE_ID_DESC - VALIDATORS_SUM_ACCOUNT_ID_ASC - VALIDATORS_SUM_ACCOUNT_ID_DESC - VALIDATORS_SUM_AUTHORITY_ID_ASC - VALIDATORS_SUM_AUTHORITY_ID_DESC - VALIDATORS_SUM_ID_ASC - VALIDATORS_SUM_ID_DESC - VALIDATORS_VARIANCE_POPULATION_ACCOUNT_ID_ASC - VALIDATORS_VARIANCE_POPULATION_ACCOUNT_ID_DESC - VALIDATORS_VARIANCE_POPULATION_AUTHORITY_ID_ASC - VALIDATORS_VARIANCE_POPULATION_AUTHORITY_ID_DESC - VALIDATORS_VARIANCE_POPULATION_ID_ASC - VALIDATORS_VARIANCE_POPULATION_ID_DESC - VALIDATORS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC - VALIDATORS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC - VALIDATORS_VARIANCE_SAMPLE_AUTHORITY_ID_ASC - VALIDATORS_VARIANCE_SAMPLE_AUTHORITY_ID_DESC - VALIDATORS_VARIANCE_SAMPLE_ID_ASC - VALIDATORS_VARIANCE_SAMPLE_ID_DESC - WEB_ASC - WEB_DESC -} - -"@enum\\n@enumName ProposalStatus" -enum AppEnum155D64Ff70 { - Accepted - Executed - FailedToExecute - Open - Rejected - Removed - Signed -} - -"@enum\\n@enumName ThresholdVariant" -enum AppEnum790A3Fe4Ce { - KEY_GEN - PROPOSER - SIGNATURE -} - -"@enum\\n@enumName ProposalType" -enum AppEnumB6165934C8 { - AnchorCreateProposal - AnchorUpdateProposal - EvmProposal - FeeRecipientUpdateProposal - MaxDepositLimitUpdateProposal - MinWithdrawalLimitUpdateProposal - ProposerSetUpdateProposal - RefreshVote - RescueTokensProposal - ResourceIdUpdateProposal - SetTreasuryHandlerProposal - SetVerifierProposal - TokenAddProposal - TokenRemoveProposal - Unknown - WrappingFeeUpdateProposal -} - -"@enum\\n@enumName VoteType" -enum AppEnumFe385C7221 { - ABSTAIN - AGAINST - FOR -} - -"Grouping methods for `Authority` for usage during aggregation." -enum AuthoritiesGroupBy { - BLOCK_ID - CURRENT - NEXT -} - -"Methods to use when ordering `Authority`." -enum AuthoritiesOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - CURRENT_ASC - CURRENT_DESC - ID_ASC - ID_DESC - NATURAL - NEXT_ASC - NEXT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -"Grouping methods for `Block` for usage during aggregation." -enum BlocksGroupBy { - EXTRINSICS_ROOT - HASH - PARENT_HASH - SPEC_VERSION - STATE_ROOT - TIMESTAMP - TIMESTAMP_TRUNCATED_TO_DAY - TIMESTAMP_TRUNCATED_TO_HOUR -} - -"Methods to use when ordering `Block`." -enum BlocksOrderBy { - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_AVERAGE_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_COUNT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_COUNT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_DISTINCT_COUNT_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MAX_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_MIN_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_POPULATION_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_STDDEV_SAMPLE_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_SUM_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_POPULATION_WEB_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_DISPLAY_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_DISPLAY_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_EMAIL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_EMAIL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_IMAGE_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_IMAGE_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_LEGAL_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_LEGAL_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_RIOT_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_RIOT_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_TWITTER_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_TWITTER_DESC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_WEB_ASC - ACCOUNTS_BY_CREATE_AT_BLOCK_ID_VARIANCE_SAMPLE_WEB_DESC - AUTHORITIES_AVERAGE_BLOCK_ID_ASC - AUTHORITIES_AVERAGE_BLOCK_ID_DESC - AUTHORITIES_AVERAGE_CURRENT_ASC - AUTHORITIES_AVERAGE_CURRENT_DESC - AUTHORITIES_AVERAGE_ID_ASC - AUTHORITIES_AVERAGE_ID_DESC - AUTHORITIES_AVERAGE_NEXT_ASC - AUTHORITIES_AVERAGE_NEXT_DESC - AUTHORITIES_COUNT_ASC - AUTHORITIES_COUNT_DESC - AUTHORITIES_DISTINCT_COUNT_BLOCK_ID_ASC - AUTHORITIES_DISTINCT_COUNT_BLOCK_ID_DESC - AUTHORITIES_DISTINCT_COUNT_CURRENT_ASC - AUTHORITIES_DISTINCT_COUNT_CURRENT_DESC - AUTHORITIES_DISTINCT_COUNT_ID_ASC - AUTHORITIES_DISTINCT_COUNT_ID_DESC - AUTHORITIES_DISTINCT_COUNT_NEXT_ASC - AUTHORITIES_DISTINCT_COUNT_NEXT_DESC - AUTHORITIES_MAX_BLOCK_ID_ASC - AUTHORITIES_MAX_BLOCK_ID_DESC - AUTHORITIES_MAX_CURRENT_ASC - AUTHORITIES_MAX_CURRENT_DESC - AUTHORITIES_MAX_ID_ASC - AUTHORITIES_MAX_ID_DESC - AUTHORITIES_MAX_NEXT_ASC - AUTHORITIES_MAX_NEXT_DESC - AUTHORITIES_MIN_BLOCK_ID_ASC - AUTHORITIES_MIN_BLOCK_ID_DESC - AUTHORITIES_MIN_CURRENT_ASC - AUTHORITIES_MIN_CURRENT_DESC - AUTHORITIES_MIN_ID_ASC - AUTHORITIES_MIN_ID_DESC - AUTHORITIES_MIN_NEXT_ASC - AUTHORITIES_MIN_NEXT_DESC - AUTHORITIES_STDDEV_POPULATION_BLOCK_ID_ASC - AUTHORITIES_STDDEV_POPULATION_BLOCK_ID_DESC - AUTHORITIES_STDDEV_POPULATION_CURRENT_ASC - AUTHORITIES_STDDEV_POPULATION_CURRENT_DESC - AUTHORITIES_STDDEV_POPULATION_ID_ASC - AUTHORITIES_STDDEV_POPULATION_ID_DESC - AUTHORITIES_STDDEV_POPULATION_NEXT_ASC - AUTHORITIES_STDDEV_POPULATION_NEXT_DESC - AUTHORITIES_STDDEV_SAMPLE_BLOCK_ID_ASC - AUTHORITIES_STDDEV_SAMPLE_BLOCK_ID_DESC - AUTHORITIES_STDDEV_SAMPLE_CURRENT_ASC - AUTHORITIES_STDDEV_SAMPLE_CURRENT_DESC - AUTHORITIES_STDDEV_SAMPLE_ID_ASC - AUTHORITIES_STDDEV_SAMPLE_ID_DESC - AUTHORITIES_STDDEV_SAMPLE_NEXT_ASC - AUTHORITIES_STDDEV_SAMPLE_NEXT_DESC - AUTHORITIES_SUM_BLOCK_ID_ASC - AUTHORITIES_SUM_BLOCK_ID_DESC - AUTHORITIES_SUM_CURRENT_ASC - AUTHORITIES_SUM_CURRENT_DESC - AUTHORITIES_SUM_ID_ASC - AUTHORITIES_SUM_ID_DESC - AUTHORITIES_SUM_NEXT_ASC - AUTHORITIES_SUM_NEXT_DESC - AUTHORITIES_VARIANCE_POPULATION_BLOCK_ID_ASC - AUTHORITIES_VARIANCE_POPULATION_BLOCK_ID_DESC - AUTHORITIES_VARIANCE_POPULATION_CURRENT_ASC - AUTHORITIES_VARIANCE_POPULATION_CURRENT_DESC - AUTHORITIES_VARIANCE_POPULATION_ID_ASC - AUTHORITIES_VARIANCE_POPULATION_ID_DESC - AUTHORITIES_VARIANCE_POPULATION_NEXT_ASC - AUTHORITIES_VARIANCE_POPULATION_NEXT_DESC - AUTHORITIES_VARIANCE_SAMPLE_BLOCK_ID_ASC - AUTHORITIES_VARIANCE_SAMPLE_BLOCK_ID_DESC - AUTHORITIES_VARIANCE_SAMPLE_CURRENT_ASC - AUTHORITIES_VARIANCE_SAMPLE_CURRENT_DESC - AUTHORITIES_VARIANCE_SAMPLE_ID_ASC - AUTHORITIES_VARIANCE_SAMPLE_ID_DESC - AUTHORITIES_VARIANCE_SAMPLE_NEXT_ASC - AUTHORITIES_VARIANCE_SAMPLE_NEXT_DESC - EVENTS_AVERAGE_ARGUMENTS_ASC - EVENTS_AVERAGE_ARGUMENTS_DESC - EVENTS_AVERAGE_BLOCK_ID_ASC - EVENTS_AVERAGE_BLOCK_ID_DESC - EVENTS_AVERAGE_BLOCK_NUMBER_ASC - EVENTS_AVERAGE_BLOCK_NUMBER_DESC - EVENTS_AVERAGE_DATA_ASC - EVENTS_AVERAGE_DATA_DESC - EVENTS_AVERAGE_DOCS_ASC - EVENTS_AVERAGE_DOCS_DESC - EVENTS_AVERAGE_EXTRINSIC_ID_ASC - EVENTS_AVERAGE_EXTRINSIC_ID_DESC - EVENTS_AVERAGE_ID_ASC - EVENTS_AVERAGE_ID_DESC - EVENTS_AVERAGE_INDEX_ASC - EVENTS_AVERAGE_INDEX_DESC - EVENTS_AVERAGE_METHOD_ASC - EVENTS_AVERAGE_METHOD_DESC - EVENTS_AVERAGE_MODULE_ASC - EVENTS_AVERAGE_MODULE_DESC - EVENTS_AVERAGE_TIMESTAMP_ASC - EVENTS_AVERAGE_TIMESTAMP_DESC - EVENTS_COUNT_ASC - EVENTS_COUNT_DESC - EVENTS_DISTINCT_COUNT_ARGUMENTS_ASC - EVENTS_DISTINCT_COUNT_ARGUMENTS_DESC - EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC - EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC - EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - EVENTS_DISTINCT_COUNT_DATA_ASC - EVENTS_DISTINCT_COUNT_DATA_DESC - EVENTS_DISTINCT_COUNT_DOCS_ASC - EVENTS_DISTINCT_COUNT_DOCS_DESC - EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC - EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC - EVENTS_DISTINCT_COUNT_ID_ASC - EVENTS_DISTINCT_COUNT_ID_DESC - EVENTS_DISTINCT_COUNT_INDEX_ASC - EVENTS_DISTINCT_COUNT_INDEX_DESC - EVENTS_DISTINCT_COUNT_METHOD_ASC - EVENTS_DISTINCT_COUNT_METHOD_DESC - EVENTS_DISTINCT_COUNT_MODULE_ASC - EVENTS_DISTINCT_COUNT_MODULE_DESC - EVENTS_DISTINCT_COUNT_TIMESTAMP_ASC - EVENTS_DISTINCT_COUNT_TIMESTAMP_DESC - EVENTS_MAX_ARGUMENTS_ASC - EVENTS_MAX_ARGUMENTS_DESC - EVENTS_MAX_BLOCK_ID_ASC - EVENTS_MAX_BLOCK_ID_DESC - EVENTS_MAX_BLOCK_NUMBER_ASC - EVENTS_MAX_BLOCK_NUMBER_DESC - EVENTS_MAX_DATA_ASC - EVENTS_MAX_DATA_DESC - EVENTS_MAX_DOCS_ASC - EVENTS_MAX_DOCS_DESC - EVENTS_MAX_EXTRINSIC_ID_ASC - EVENTS_MAX_EXTRINSIC_ID_DESC - EVENTS_MAX_ID_ASC - EVENTS_MAX_ID_DESC - EVENTS_MAX_INDEX_ASC - EVENTS_MAX_INDEX_DESC - EVENTS_MAX_METHOD_ASC - EVENTS_MAX_METHOD_DESC - EVENTS_MAX_MODULE_ASC - EVENTS_MAX_MODULE_DESC - EVENTS_MAX_TIMESTAMP_ASC - EVENTS_MAX_TIMESTAMP_DESC - EVENTS_MIN_ARGUMENTS_ASC - EVENTS_MIN_ARGUMENTS_DESC - EVENTS_MIN_BLOCK_ID_ASC - EVENTS_MIN_BLOCK_ID_DESC - EVENTS_MIN_BLOCK_NUMBER_ASC - EVENTS_MIN_BLOCK_NUMBER_DESC - EVENTS_MIN_DATA_ASC - EVENTS_MIN_DATA_DESC - EVENTS_MIN_DOCS_ASC - EVENTS_MIN_DOCS_DESC - EVENTS_MIN_EXTRINSIC_ID_ASC - EVENTS_MIN_EXTRINSIC_ID_DESC - EVENTS_MIN_ID_ASC - EVENTS_MIN_ID_DESC - EVENTS_MIN_INDEX_ASC - EVENTS_MIN_INDEX_DESC - EVENTS_MIN_METHOD_ASC - EVENTS_MIN_METHOD_DESC - EVENTS_MIN_MODULE_ASC - EVENTS_MIN_MODULE_DESC - EVENTS_MIN_TIMESTAMP_ASC - EVENTS_MIN_TIMESTAMP_DESC - EVENTS_STDDEV_POPULATION_ARGUMENTS_ASC - EVENTS_STDDEV_POPULATION_ARGUMENTS_DESC - EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC - EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC - EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - EVENTS_STDDEV_POPULATION_DATA_ASC - EVENTS_STDDEV_POPULATION_DATA_DESC - EVENTS_STDDEV_POPULATION_DOCS_ASC - EVENTS_STDDEV_POPULATION_DOCS_DESC - EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC - EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC - EVENTS_STDDEV_POPULATION_ID_ASC - EVENTS_STDDEV_POPULATION_ID_DESC - EVENTS_STDDEV_POPULATION_INDEX_ASC - EVENTS_STDDEV_POPULATION_INDEX_DESC - EVENTS_STDDEV_POPULATION_METHOD_ASC - EVENTS_STDDEV_POPULATION_METHOD_DESC - EVENTS_STDDEV_POPULATION_MODULE_ASC - EVENTS_STDDEV_POPULATION_MODULE_DESC - EVENTS_STDDEV_POPULATION_TIMESTAMP_ASC - EVENTS_STDDEV_POPULATION_TIMESTAMP_DESC - EVENTS_STDDEV_SAMPLE_ARGUMENTS_ASC - EVENTS_STDDEV_SAMPLE_ARGUMENTS_DESC - EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC - EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC - EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - EVENTS_STDDEV_SAMPLE_DATA_ASC - EVENTS_STDDEV_SAMPLE_DATA_DESC - EVENTS_STDDEV_SAMPLE_DOCS_ASC - EVENTS_STDDEV_SAMPLE_DOCS_DESC - EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC - EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC - EVENTS_STDDEV_SAMPLE_ID_ASC - EVENTS_STDDEV_SAMPLE_ID_DESC - EVENTS_STDDEV_SAMPLE_INDEX_ASC - EVENTS_STDDEV_SAMPLE_INDEX_DESC - EVENTS_STDDEV_SAMPLE_METHOD_ASC - EVENTS_STDDEV_SAMPLE_METHOD_DESC - EVENTS_STDDEV_SAMPLE_MODULE_ASC - EVENTS_STDDEV_SAMPLE_MODULE_DESC - EVENTS_STDDEV_SAMPLE_TIMESTAMP_ASC - EVENTS_STDDEV_SAMPLE_TIMESTAMP_DESC - EVENTS_SUM_ARGUMENTS_ASC - EVENTS_SUM_ARGUMENTS_DESC - EVENTS_SUM_BLOCK_ID_ASC - EVENTS_SUM_BLOCK_ID_DESC - EVENTS_SUM_BLOCK_NUMBER_ASC - EVENTS_SUM_BLOCK_NUMBER_DESC - EVENTS_SUM_DATA_ASC - EVENTS_SUM_DATA_DESC - EVENTS_SUM_DOCS_ASC - EVENTS_SUM_DOCS_DESC - EVENTS_SUM_EXTRINSIC_ID_ASC - EVENTS_SUM_EXTRINSIC_ID_DESC - EVENTS_SUM_ID_ASC - EVENTS_SUM_ID_DESC - EVENTS_SUM_INDEX_ASC - EVENTS_SUM_INDEX_DESC - EVENTS_SUM_METHOD_ASC - EVENTS_SUM_METHOD_DESC - EVENTS_SUM_MODULE_ASC - EVENTS_SUM_MODULE_DESC - EVENTS_SUM_TIMESTAMP_ASC - EVENTS_SUM_TIMESTAMP_DESC - EVENTS_VARIANCE_POPULATION_ARGUMENTS_ASC - EVENTS_VARIANCE_POPULATION_ARGUMENTS_DESC - EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC - EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC - EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - EVENTS_VARIANCE_POPULATION_DATA_ASC - EVENTS_VARIANCE_POPULATION_DATA_DESC - EVENTS_VARIANCE_POPULATION_DOCS_ASC - EVENTS_VARIANCE_POPULATION_DOCS_DESC - EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC - EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC - EVENTS_VARIANCE_POPULATION_ID_ASC - EVENTS_VARIANCE_POPULATION_ID_DESC - EVENTS_VARIANCE_POPULATION_INDEX_ASC - EVENTS_VARIANCE_POPULATION_INDEX_DESC - EVENTS_VARIANCE_POPULATION_METHOD_ASC - EVENTS_VARIANCE_POPULATION_METHOD_DESC - EVENTS_VARIANCE_POPULATION_MODULE_ASC - EVENTS_VARIANCE_POPULATION_MODULE_DESC - EVENTS_VARIANCE_POPULATION_TIMESTAMP_ASC - EVENTS_VARIANCE_POPULATION_TIMESTAMP_DESC - EVENTS_VARIANCE_SAMPLE_ARGUMENTS_ASC - EVENTS_VARIANCE_SAMPLE_ARGUMENTS_DESC - EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC - EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC - EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - EVENTS_VARIANCE_SAMPLE_DATA_ASC - EVENTS_VARIANCE_SAMPLE_DATA_DESC - EVENTS_VARIANCE_SAMPLE_DOCS_ASC - EVENTS_VARIANCE_SAMPLE_DOCS_DESC - EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC - EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC - EVENTS_VARIANCE_SAMPLE_ID_ASC - EVENTS_VARIANCE_SAMPLE_ID_DESC - EVENTS_VARIANCE_SAMPLE_INDEX_ASC - EVENTS_VARIANCE_SAMPLE_INDEX_DESC - EVENTS_VARIANCE_SAMPLE_METHOD_ASC - EVENTS_VARIANCE_SAMPLE_METHOD_DESC - EVENTS_VARIANCE_SAMPLE_MODULE_ASC - EVENTS_VARIANCE_SAMPLE_MODULE_DESC - EVENTS_VARIANCE_SAMPLE_TIMESTAMP_ASC - EVENTS_VARIANCE_SAMPLE_TIMESTAMP_DESC - EXTRINSICS_AVERAGE_ARGUMENTS_ASC - EXTRINSICS_AVERAGE_ARGUMENTS_DESC - EXTRINSICS_AVERAGE_BLOCK_ID_ASC - EXTRINSICS_AVERAGE_BLOCK_ID_DESC - EXTRINSICS_AVERAGE_BLOCK_NUMBER_ASC - EXTRINSICS_AVERAGE_BLOCK_NUMBER_DESC - EXTRINSICS_AVERAGE_HASH_ASC - EXTRINSICS_AVERAGE_HASH_DESC - EXTRINSICS_AVERAGE_ID_ASC - EXTRINSICS_AVERAGE_ID_DESC - EXTRINSICS_AVERAGE_INDEX_ASC - EXTRINSICS_AVERAGE_INDEX_DESC - EXTRINSICS_AVERAGE_IS_SIGNED_ASC - EXTRINSICS_AVERAGE_IS_SIGNED_DESC - EXTRINSICS_AVERAGE_IS_SUCCESS_ASC - EXTRINSICS_AVERAGE_IS_SUCCESS_DESC - EXTRINSICS_AVERAGE_METHOD_ASC - EXTRINSICS_AVERAGE_METHOD_DESC - EXTRINSICS_AVERAGE_MODULE_ASC - EXTRINSICS_AVERAGE_MODULE_DESC - EXTRINSICS_AVERAGE_SIGNER_ID_ASC - EXTRINSICS_AVERAGE_SIGNER_ID_DESC - EXTRINSICS_COUNT_ASC - EXTRINSICS_COUNT_DESC - EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_ASC - EXTRINSICS_DISTINCT_COUNT_ARGUMENTS_DESC - EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC - EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC - EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - EXTRINSICS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - EXTRINSICS_DISTINCT_COUNT_HASH_ASC - EXTRINSICS_DISTINCT_COUNT_HASH_DESC - EXTRINSICS_DISTINCT_COUNT_ID_ASC - EXTRINSICS_DISTINCT_COUNT_ID_DESC - EXTRINSICS_DISTINCT_COUNT_INDEX_ASC - EXTRINSICS_DISTINCT_COUNT_INDEX_DESC - EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_ASC - EXTRINSICS_DISTINCT_COUNT_IS_SIGNED_DESC - EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_ASC - EXTRINSICS_DISTINCT_COUNT_IS_SUCCESS_DESC - EXTRINSICS_DISTINCT_COUNT_METHOD_ASC - EXTRINSICS_DISTINCT_COUNT_METHOD_DESC - EXTRINSICS_DISTINCT_COUNT_MODULE_ASC - EXTRINSICS_DISTINCT_COUNT_MODULE_DESC - EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_ASC - EXTRINSICS_DISTINCT_COUNT_SIGNER_ID_DESC - EXTRINSICS_MAX_ARGUMENTS_ASC - EXTRINSICS_MAX_ARGUMENTS_DESC - EXTRINSICS_MAX_BLOCK_ID_ASC - EXTRINSICS_MAX_BLOCK_ID_DESC - EXTRINSICS_MAX_BLOCK_NUMBER_ASC - EXTRINSICS_MAX_BLOCK_NUMBER_DESC - EXTRINSICS_MAX_HASH_ASC - EXTRINSICS_MAX_HASH_DESC - EXTRINSICS_MAX_ID_ASC - EXTRINSICS_MAX_ID_DESC - EXTRINSICS_MAX_INDEX_ASC - EXTRINSICS_MAX_INDEX_DESC - EXTRINSICS_MAX_IS_SIGNED_ASC - EXTRINSICS_MAX_IS_SIGNED_DESC - EXTRINSICS_MAX_IS_SUCCESS_ASC - EXTRINSICS_MAX_IS_SUCCESS_DESC - EXTRINSICS_MAX_METHOD_ASC - EXTRINSICS_MAX_METHOD_DESC - EXTRINSICS_MAX_MODULE_ASC - EXTRINSICS_MAX_MODULE_DESC - EXTRINSICS_MAX_SIGNER_ID_ASC - EXTRINSICS_MAX_SIGNER_ID_DESC - EXTRINSICS_MIN_ARGUMENTS_ASC - EXTRINSICS_MIN_ARGUMENTS_DESC - EXTRINSICS_MIN_BLOCK_ID_ASC - EXTRINSICS_MIN_BLOCK_ID_DESC - EXTRINSICS_MIN_BLOCK_NUMBER_ASC - EXTRINSICS_MIN_BLOCK_NUMBER_DESC - EXTRINSICS_MIN_HASH_ASC - EXTRINSICS_MIN_HASH_DESC - EXTRINSICS_MIN_ID_ASC - EXTRINSICS_MIN_ID_DESC - EXTRINSICS_MIN_INDEX_ASC - EXTRINSICS_MIN_INDEX_DESC - EXTRINSICS_MIN_IS_SIGNED_ASC - EXTRINSICS_MIN_IS_SIGNED_DESC - EXTRINSICS_MIN_IS_SUCCESS_ASC - EXTRINSICS_MIN_IS_SUCCESS_DESC - EXTRINSICS_MIN_METHOD_ASC - EXTRINSICS_MIN_METHOD_DESC - EXTRINSICS_MIN_MODULE_ASC - EXTRINSICS_MIN_MODULE_DESC - EXTRINSICS_MIN_SIGNER_ID_ASC - EXTRINSICS_MIN_SIGNER_ID_DESC - EXTRINSICS_ROOT_ASC - EXTRINSICS_ROOT_DESC - EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_ASC - EXTRINSICS_STDDEV_POPULATION_ARGUMENTS_DESC - EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC - EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC - EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - EXTRINSICS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - EXTRINSICS_STDDEV_POPULATION_HASH_ASC - EXTRINSICS_STDDEV_POPULATION_HASH_DESC - EXTRINSICS_STDDEV_POPULATION_ID_ASC - EXTRINSICS_STDDEV_POPULATION_ID_DESC - EXTRINSICS_STDDEV_POPULATION_INDEX_ASC - EXTRINSICS_STDDEV_POPULATION_INDEX_DESC - EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_ASC - EXTRINSICS_STDDEV_POPULATION_IS_SIGNED_DESC - EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_ASC - EXTRINSICS_STDDEV_POPULATION_IS_SUCCESS_DESC - EXTRINSICS_STDDEV_POPULATION_METHOD_ASC - EXTRINSICS_STDDEV_POPULATION_METHOD_DESC - EXTRINSICS_STDDEV_POPULATION_MODULE_ASC - EXTRINSICS_STDDEV_POPULATION_MODULE_DESC - EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_ASC - EXTRINSICS_STDDEV_POPULATION_SIGNER_ID_DESC - EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_ASC - EXTRINSICS_STDDEV_SAMPLE_ARGUMENTS_DESC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - EXTRINSICS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - EXTRINSICS_STDDEV_SAMPLE_HASH_ASC - EXTRINSICS_STDDEV_SAMPLE_HASH_DESC - EXTRINSICS_STDDEV_SAMPLE_ID_ASC - EXTRINSICS_STDDEV_SAMPLE_ID_DESC - EXTRINSICS_STDDEV_SAMPLE_INDEX_ASC - EXTRINSICS_STDDEV_SAMPLE_INDEX_DESC - EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_ASC - EXTRINSICS_STDDEV_SAMPLE_IS_SIGNED_DESC - EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_ASC - EXTRINSICS_STDDEV_SAMPLE_IS_SUCCESS_DESC - EXTRINSICS_STDDEV_SAMPLE_METHOD_ASC - EXTRINSICS_STDDEV_SAMPLE_METHOD_DESC - EXTRINSICS_STDDEV_SAMPLE_MODULE_ASC - EXTRINSICS_STDDEV_SAMPLE_MODULE_DESC - EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_ASC - EXTRINSICS_STDDEV_SAMPLE_SIGNER_ID_DESC - EXTRINSICS_SUM_ARGUMENTS_ASC - EXTRINSICS_SUM_ARGUMENTS_DESC - EXTRINSICS_SUM_BLOCK_ID_ASC - EXTRINSICS_SUM_BLOCK_ID_DESC - EXTRINSICS_SUM_BLOCK_NUMBER_ASC - EXTRINSICS_SUM_BLOCK_NUMBER_DESC - EXTRINSICS_SUM_HASH_ASC - EXTRINSICS_SUM_HASH_DESC - EXTRINSICS_SUM_ID_ASC - EXTRINSICS_SUM_ID_DESC - EXTRINSICS_SUM_INDEX_ASC - EXTRINSICS_SUM_INDEX_DESC - EXTRINSICS_SUM_IS_SIGNED_ASC - EXTRINSICS_SUM_IS_SIGNED_DESC - EXTRINSICS_SUM_IS_SUCCESS_ASC - EXTRINSICS_SUM_IS_SUCCESS_DESC - EXTRINSICS_SUM_METHOD_ASC - EXTRINSICS_SUM_METHOD_DESC - EXTRINSICS_SUM_MODULE_ASC - EXTRINSICS_SUM_MODULE_DESC - EXTRINSICS_SUM_SIGNER_ID_ASC - EXTRINSICS_SUM_SIGNER_ID_DESC - EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_ASC - EXTRINSICS_VARIANCE_POPULATION_ARGUMENTS_DESC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - EXTRINSICS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - EXTRINSICS_VARIANCE_POPULATION_HASH_ASC - EXTRINSICS_VARIANCE_POPULATION_HASH_DESC - EXTRINSICS_VARIANCE_POPULATION_ID_ASC - EXTRINSICS_VARIANCE_POPULATION_ID_DESC - EXTRINSICS_VARIANCE_POPULATION_INDEX_ASC - EXTRINSICS_VARIANCE_POPULATION_INDEX_DESC - EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_ASC - EXTRINSICS_VARIANCE_POPULATION_IS_SIGNED_DESC - EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_ASC - EXTRINSICS_VARIANCE_POPULATION_IS_SUCCESS_DESC - EXTRINSICS_VARIANCE_POPULATION_METHOD_ASC - EXTRINSICS_VARIANCE_POPULATION_METHOD_DESC - EXTRINSICS_VARIANCE_POPULATION_MODULE_ASC - EXTRINSICS_VARIANCE_POPULATION_MODULE_DESC - EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_ASC - EXTRINSICS_VARIANCE_POPULATION_SIGNER_ID_DESC - EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_ASC - EXTRINSICS_VARIANCE_SAMPLE_ARGUMENTS_DESC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - EXTRINSICS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - EXTRINSICS_VARIANCE_SAMPLE_HASH_ASC - EXTRINSICS_VARIANCE_SAMPLE_HASH_DESC - EXTRINSICS_VARIANCE_SAMPLE_ID_ASC - EXTRINSICS_VARIANCE_SAMPLE_ID_DESC - EXTRINSICS_VARIANCE_SAMPLE_INDEX_ASC - EXTRINSICS_VARIANCE_SAMPLE_INDEX_DESC - EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_ASC - EXTRINSICS_VARIANCE_SAMPLE_IS_SIGNED_DESC - EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_ASC - EXTRINSICS_VARIANCE_SAMPLE_IS_SUCCESS_DESC - EXTRINSICS_VARIANCE_SAMPLE_METHOD_ASC - EXTRINSICS_VARIANCE_SAMPLE_METHOD_DESC - EXTRINSICS_VARIANCE_SAMPLE_MODULE_ASC - EXTRINSICS_VARIANCE_SAMPLE_MODULE_DESC - EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_ASC - EXTRINSICS_VARIANCE_SAMPLE_SIGNER_ID_DESC - HASH_ASC - HASH_DESC - ID_ASC - ID_DESC - KEYGEN_THRESHOLDS_AVERAGE_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_AVERAGE_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_AVERAGE_CURRENT_ASC - KEYGEN_THRESHOLDS_AVERAGE_CURRENT_DESC - KEYGEN_THRESHOLDS_AVERAGE_ID_ASC - KEYGEN_THRESHOLDS_AVERAGE_ID_DESC - KEYGEN_THRESHOLDS_AVERAGE_NEXT_ASC - KEYGEN_THRESHOLDS_AVERAGE_NEXT_DESC - KEYGEN_THRESHOLDS_AVERAGE_PENDING_ASC - KEYGEN_THRESHOLDS_AVERAGE_PENDING_DESC - KEYGEN_THRESHOLDS_COUNT_ASC - KEYGEN_THRESHOLDS_COUNT_DESC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_ID_ASC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_ID_DESC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_NEXT_ASC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_NEXT_DESC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_PENDING_ASC - KEYGEN_THRESHOLDS_DISTINCT_COUNT_PENDING_DESC - KEYGEN_THRESHOLDS_MAX_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_MAX_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_MAX_CURRENT_ASC - KEYGEN_THRESHOLDS_MAX_CURRENT_DESC - KEYGEN_THRESHOLDS_MAX_ID_ASC - KEYGEN_THRESHOLDS_MAX_ID_DESC - KEYGEN_THRESHOLDS_MAX_NEXT_ASC - KEYGEN_THRESHOLDS_MAX_NEXT_DESC - KEYGEN_THRESHOLDS_MAX_PENDING_ASC - KEYGEN_THRESHOLDS_MAX_PENDING_DESC - KEYGEN_THRESHOLDS_MIN_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_MIN_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_MIN_CURRENT_ASC - KEYGEN_THRESHOLDS_MIN_CURRENT_DESC - KEYGEN_THRESHOLDS_MIN_ID_ASC - KEYGEN_THRESHOLDS_MIN_ID_DESC - KEYGEN_THRESHOLDS_MIN_NEXT_ASC - KEYGEN_THRESHOLDS_MIN_NEXT_DESC - KEYGEN_THRESHOLDS_MIN_PENDING_ASC - KEYGEN_THRESHOLDS_MIN_PENDING_DESC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_ID_ASC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_ID_DESC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_NEXT_ASC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_NEXT_DESC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_PENDING_ASC - KEYGEN_THRESHOLDS_STDDEV_POPULATION_PENDING_DESC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_ID_ASC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_ID_DESC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC - KEYGEN_THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC - KEYGEN_THRESHOLDS_SUM_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_SUM_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_SUM_CURRENT_ASC - KEYGEN_THRESHOLDS_SUM_CURRENT_DESC - KEYGEN_THRESHOLDS_SUM_ID_ASC - KEYGEN_THRESHOLDS_SUM_ID_DESC - KEYGEN_THRESHOLDS_SUM_NEXT_ASC - KEYGEN_THRESHOLDS_SUM_NEXT_DESC - KEYGEN_THRESHOLDS_SUM_PENDING_ASC - KEYGEN_THRESHOLDS_SUM_PENDING_DESC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_ID_ASC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_ID_DESC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC - KEYGEN_THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC - KEYGEN_THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC - NATURAL - NUMBER_ASC - NUMBER_DESC - PARENT_HASH_ASC - PARENT_HASH_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSAL_COUNTERS_AVERAGE_BLOCK_ID_ASC - PROPOSAL_COUNTERS_AVERAGE_BLOCK_ID_DESC - PROPOSAL_COUNTERS_AVERAGE_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_AVERAGE_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_AVERAGE_ID_ASC - PROPOSAL_COUNTERS_AVERAGE_ID_DESC - PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_AVERAGE_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_AVERAGE_STATUS_MAP_ASC - PROPOSAL_COUNTERS_AVERAGE_STATUS_MAP_DESC - PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_AVERAGE_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_COUNT_ASC - PROPOSAL_COUNTERS_COUNT_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_ID_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_ID_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_ID_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_ID_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_STATUS_MAP_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_STATUS_MAP_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_DISTINCT_COUNT_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_MAX_BLOCK_ID_ASC - PROPOSAL_COUNTERS_MAX_BLOCK_ID_DESC - PROPOSAL_COUNTERS_MAX_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_MAX_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_MAX_ID_ASC - PROPOSAL_COUNTERS_MAX_ID_DESC - PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_MAX_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_MAX_STATUS_MAP_ASC - PROPOSAL_COUNTERS_MAX_STATUS_MAP_DESC - PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_MAX_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_MIN_BLOCK_ID_ASC - PROPOSAL_COUNTERS_MIN_BLOCK_ID_DESC - PROPOSAL_COUNTERS_MIN_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_MIN_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_MIN_ID_ASC - PROPOSAL_COUNTERS_MIN_ID_DESC - PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_MIN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_MIN_STATUS_MAP_ASC - PROPOSAL_COUNTERS_MIN_STATUS_MAP_DESC - PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_MIN_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_ID_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_ID_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_ID_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_ID_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_STATUS_MAP_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_STATUS_MAP_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_STDDEV_POPULATION_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_ID_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_ID_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_ID_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_ID_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_STATUS_MAP_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_STATUS_MAP_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_STDDEV_SAMPLE_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_SUM_BLOCK_ID_ASC - PROPOSAL_COUNTERS_SUM_BLOCK_ID_DESC - PROPOSAL_COUNTERS_SUM_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_SUM_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_SUM_ID_ASC - PROPOSAL_COUNTERS_SUM_ID_DESC - PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_SUM_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_SUM_STATUS_MAP_ASC - PROPOSAL_COUNTERS_SUM_STATUS_MAP_DESC - PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_SUM_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_ID_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_ID_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_ID_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_ID_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_STATUS_MAP_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_STATUS_MAP_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_VARIANCE_POPULATION_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_ID_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_ID_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_ID_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_ID_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_STATUS_MAP_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_STATUS_MAP_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_COUNT_DESC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_MAP_ASC - PROPOSAL_COUNTERS_VARIANCE_SAMPLE_UN_SIGNED_PROPOSALS_MAP_DESC - PROPOSAL_ITEMS_AVERAGE_BLOCK_ID_ASC - PROPOSAL_ITEMS_AVERAGE_BLOCK_ID_DESC - PROPOSAL_ITEMS_AVERAGE_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_AVERAGE_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_AVERAGE_CHAIN_ID_ASC - PROPOSAL_ITEMS_AVERAGE_CHAIN_ID_DESC - PROPOSAL_ITEMS_AVERAGE_DATA_ASC - PROPOSAL_ITEMS_AVERAGE_DATA_DESC - PROPOSAL_ITEMS_AVERAGE_ID_ASC - PROPOSAL_ITEMS_AVERAGE_ID_DESC - PROPOSAL_ITEMS_AVERAGE_NONCE_ASC - PROPOSAL_ITEMS_AVERAGE_NONCE_DESC - PROPOSAL_ITEMS_AVERAGE_REMOVED_ASC - PROPOSAL_ITEMS_AVERAGE_REMOVED_DESC - PROPOSAL_ITEMS_AVERAGE_SIGNATURE_ASC - PROPOSAL_ITEMS_AVERAGE_SIGNATURE_DESC - PROPOSAL_ITEMS_AVERAGE_STATUS_ASC - PROPOSAL_ITEMS_AVERAGE_STATUS_DESC - PROPOSAL_ITEMS_AVERAGE_TYPE_ASC - PROPOSAL_ITEMS_AVERAGE_TYPE_DESC - PROPOSAL_ITEMS_COUNT_ASC - PROPOSAL_ITEMS_COUNT_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_ID_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_ID_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_CHAIN_ID_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_CHAIN_ID_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_DATA_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_DATA_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_ID_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_ID_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_NONCE_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_NONCE_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_REMOVED_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_REMOVED_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_SIGNATURE_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_SIGNATURE_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_STATUS_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_STATUS_DESC - PROPOSAL_ITEMS_DISTINCT_COUNT_TYPE_ASC - PROPOSAL_ITEMS_DISTINCT_COUNT_TYPE_DESC - PROPOSAL_ITEMS_MAX_BLOCK_ID_ASC - PROPOSAL_ITEMS_MAX_BLOCK_ID_DESC - PROPOSAL_ITEMS_MAX_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_MAX_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_MAX_CHAIN_ID_ASC - PROPOSAL_ITEMS_MAX_CHAIN_ID_DESC - PROPOSAL_ITEMS_MAX_DATA_ASC - PROPOSAL_ITEMS_MAX_DATA_DESC - PROPOSAL_ITEMS_MAX_ID_ASC - PROPOSAL_ITEMS_MAX_ID_DESC - PROPOSAL_ITEMS_MAX_NONCE_ASC - PROPOSAL_ITEMS_MAX_NONCE_DESC - PROPOSAL_ITEMS_MAX_REMOVED_ASC - PROPOSAL_ITEMS_MAX_REMOVED_DESC - PROPOSAL_ITEMS_MAX_SIGNATURE_ASC - PROPOSAL_ITEMS_MAX_SIGNATURE_DESC - PROPOSAL_ITEMS_MAX_STATUS_ASC - PROPOSAL_ITEMS_MAX_STATUS_DESC - PROPOSAL_ITEMS_MAX_TYPE_ASC - PROPOSAL_ITEMS_MAX_TYPE_DESC - PROPOSAL_ITEMS_MIN_BLOCK_ID_ASC - PROPOSAL_ITEMS_MIN_BLOCK_ID_DESC - PROPOSAL_ITEMS_MIN_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_MIN_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_MIN_CHAIN_ID_ASC - PROPOSAL_ITEMS_MIN_CHAIN_ID_DESC - PROPOSAL_ITEMS_MIN_DATA_ASC - PROPOSAL_ITEMS_MIN_DATA_DESC - PROPOSAL_ITEMS_MIN_ID_ASC - PROPOSAL_ITEMS_MIN_ID_DESC - PROPOSAL_ITEMS_MIN_NONCE_ASC - PROPOSAL_ITEMS_MIN_NONCE_DESC - PROPOSAL_ITEMS_MIN_REMOVED_ASC - PROPOSAL_ITEMS_MIN_REMOVED_DESC - PROPOSAL_ITEMS_MIN_SIGNATURE_ASC - PROPOSAL_ITEMS_MIN_SIGNATURE_DESC - PROPOSAL_ITEMS_MIN_STATUS_ASC - PROPOSAL_ITEMS_MIN_STATUS_DESC - PROPOSAL_ITEMS_MIN_TYPE_ASC - PROPOSAL_ITEMS_MIN_TYPE_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_ID_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_ID_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_CHAIN_ID_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_CHAIN_ID_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_DATA_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_DATA_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_ID_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_ID_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_NONCE_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_NONCE_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_REMOVED_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_REMOVED_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_SIGNATURE_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_SIGNATURE_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_STATUS_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_STATUS_DESC - PROPOSAL_ITEMS_STDDEV_POPULATION_TYPE_ASC - PROPOSAL_ITEMS_STDDEV_POPULATION_TYPE_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_ID_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_ID_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_CHAIN_ID_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_CHAIN_ID_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_DATA_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_DATA_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_ID_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_ID_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_NONCE_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_NONCE_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_REMOVED_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_REMOVED_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_SIGNATURE_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_SIGNATURE_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_STATUS_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_STATUS_DESC - PROPOSAL_ITEMS_STDDEV_SAMPLE_TYPE_ASC - PROPOSAL_ITEMS_STDDEV_SAMPLE_TYPE_DESC - PROPOSAL_ITEMS_SUM_BLOCK_ID_ASC - PROPOSAL_ITEMS_SUM_BLOCK_ID_DESC - PROPOSAL_ITEMS_SUM_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_SUM_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_SUM_CHAIN_ID_ASC - PROPOSAL_ITEMS_SUM_CHAIN_ID_DESC - PROPOSAL_ITEMS_SUM_DATA_ASC - PROPOSAL_ITEMS_SUM_DATA_DESC - PROPOSAL_ITEMS_SUM_ID_ASC - PROPOSAL_ITEMS_SUM_ID_DESC - PROPOSAL_ITEMS_SUM_NONCE_ASC - PROPOSAL_ITEMS_SUM_NONCE_DESC - PROPOSAL_ITEMS_SUM_REMOVED_ASC - PROPOSAL_ITEMS_SUM_REMOVED_DESC - PROPOSAL_ITEMS_SUM_SIGNATURE_ASC - PROPOSAL_ITEMS_SUM_SIGNATURE_DESC - PROPOSAL_ITEMS_SUM_STATUS_ASC - PROPOSAL_ITEMS_SUM_STATUS_DESC - PROPOSAL_ITEMS_SUM_TYPE_ASC - PROPOSAL_ITEMS_SUM_TYPE_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_ID_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_ID_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_CHAIN_ID_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_CHAIN_ID_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_DATA_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_DATA_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_ID_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_ID_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_NONCE_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_NONCE_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_REMOVED_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_REMOVED_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_SIGNATURE_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_SIGNATURE_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_STATUS_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_STATUS_DESC - PROPOSAL_ITEMS_VARIANCE_POPULATION_TYPE_ASC - PROPOSAL_ITEMS_VARIANCE_POPULATION_TYPE_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_ID_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_ID_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_CHAIN_ID_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_CHAIN_ID_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_DATA_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_DATA_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_ID_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_ID_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_NONCE_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_NONCE_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_REMOVED_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_REMOVED_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_SIGNATURE_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_SIGNATURE_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_STATUS_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_STATUS_DESC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_TYPE_ASC - PROPOSAL_ITEMS_VARIANCE_SAMPLE_TYPE_DESC - PROPOSAL_VOTES_AVERAGE_BLOCK_ID_ASC - PROPOSAL_VOTES_AVERAGE_BLOCK_ID_DESC - PROPOSAL_VOTES_AVERAGE_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_AVERAGE_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_AVERAGE_ID_ASC - PROPOSAL_VOTES_AVERAGE_ID_DESC - PROPOSAL_VOTES_AVERAGE_PROPOSAL_ID_ASC - PROPOSAL_VOTES_AVERAGE_PROPOSAL_ID_DESC - PROPOSAL_VOTES_AVERAGE_VOTER_ID_ASC - PROPOSAL_VOTES_AVERAGE_VOTER_ID_DESC - PROPOSAL_VOTES_AVERAGE_VOTE_STATUS_ASC - PROPOSAL_VOTES_AVERAGE_VOTE_STATUS_DESC - PROPOSAL_VOTES_COUNT_ASC - PROPOSAL_VOTES_COUNT_DESC - PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_ID_ASC - PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_ID_DESC - PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_DISTINCT_COUNT_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_DISTINCT_COUNT_ID_ASC - PROPOSAL_VOTES_DISTINCT_COUNT_ID_DESC - PROPOSAL_VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC - PROPOSAL_VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC - PROPOSAL_VOTES_DISTINCT_COUNT_VOTER_ID_ASC - PROPOSAL_VOTES_DISTINCT_COUNT_VOTER_ID_DESC - PROPOSAL_VOTES_DISTINCT_COUNT_VOTE_STATUS_ASC - PROPOSAL_VOTES_DISTINCT_COUNT_VOTE_STATUS_DESC - PROPOSAL_VOTES_MAX_BLOCK_ID_ASC - PROPOSAL_VOTES_MAX_BLOCK_ID_DESC - PROPOSAL_VOTES_MAX_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_MAX_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_MAX_ID_ASC - PROPOSAL_VOTES_MAX_ID_DESC - PROPOSAL_VOTES_MAX_PROPOSAL_ID_ASC - PROPOSAL_VOTES_MAX_PROPOSAL_ID_DESC - PROPOSAL_VOTES_MAX_VOTER_ID_ASC - PROPOSAL_VOTES_MAX_VOTER_ID_DESC - PROPOSAL_VOTES_MAX_VOTE_STATUS_ASC - PROPOSAL_VOTES_MAX_VOTE_STATUS_DESC - PROPOSAL_VOTES_MIN_BLOCK_ID_ASC - PROPOSAL_VOTES_MIN_BLOCK_ID_DESC - PROPOSAL_VOTES_MIN_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_MIN_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_MIN_ID_ASC - PROPOSAL_VOTES_MIN_ID_DESC - PROPOSAL_VOTES_MIN_PROPOSAL_ID_ASC - PROPOSAL_VOTES_MIN_PROPOSAL_ID_DESC - PROPOSAL_VOTES_MIN_VOTER_ID_ASC - PROPOSAL_VOTES_MIN_VOTER_ID_DESC - PROPOSAL_VOTES_MIN_VOTE_STATUS_ASC - PROPOSAL_VOTES_MIN_VOTE_STATUS_DESC - PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_ID_ASC - PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_ID_DESC - PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_STDDEV_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_STDDEV_POPULATION_ID_ASC - PROPOSAL_VOTES_STDDEV_POPULATION_ID_DESC - PROPOSAL_VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC - PROPOSAL_VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC - PROPOSAL_VOTES_STDDEV_POPULATION_VOTER_ID_ASC - PROPOSAL_VOTES_STDDEV_POPULATION_VOTER_ID_DESC - PROPOSAL_VOTES_STDDEV_POPULATION_VOTE_STATUS_ASC - PROPOSAL_VOTES_STDDEV_POPULATION_VOTE_STATUS_DESC - PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_ID_ASC - PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_ID_DESC - PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_STDDEV_SAMPLE_ID_ASC - PROPOSAL_VOTES_STDDEV_SAMPLE_ID_DESC - PROPOSAL_VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC - PROPOSAL_VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC - PROPOSAL_VOTES_STDDEV_SAMPLE_VOTER_ID_ASC - PROPOSAL_VOTES_STDDEV_SAMPLE_VOTER_ID_DESC - PROPOSAL_VOTES_STDDEV_SAMPLE_VOTE_STATUS_ASC - PROPOSAL_VOTES_STDDEV_SAMPLE_VOTE_STATUS_DESC - PROPOSAL_VOTES_SUM_BLOCK_ID_ASC - PROPOSAL_VOTES_SUM_BLOCK_ID_DESC - PROPOSAL_VOTES_SUM_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_SUM_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_SUM_ID_ASC - PROPOSAL_VOTES_SUM_ID_DESC - PROPOSAL_VOTES_SUM_PROPOSAL_ID_ASC - PROPOSAL_VOTES_SUM_PROPOSAL_ID_DESC - PROPOSAL_VOTES_SUM_VOTER_ID_ASC - PROPOSAL_VOTES_SUM_VOTER_ID_DESC - PROPOSAL_VOTES_SUM_VOTE_STATUS_ASC - PROPOSAL_VOTES_SUM_VOTE_STATUS_DESC - PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_ID_ASC - PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_ID_DESC - PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_VARIANCE_POPULATION_ID_ASC - PROPOSAL_VOTES_VARIANCE_POPULATION_ID_DESC - PROPOSAL_VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC - PROPOSAL_VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC - PROPOSAL_VOTES_VARIANCE_POPULATION_VOTER_ID_ASC - PROPOSAL_VOTES_VARIANCE_POPULATION_VOTER_ID_DESC - PROPOSAL_VOTES_VARIANCE_POPULATION_VOTE_STATUS_ASC - PROPOSAL_VOTES_VARIANCE_POPULATION_VOTE_STATUS_DESC - PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_ID_ASC - PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_ID_DESC - PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_VARIANCE_SAMPLE_ID_ASC - PROPOSAL_VOTES_VARIANCE_SAMPLE_ID_DESC - PROPOSAL_VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC - PROPOSAL_VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC - PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTER_ID_ASC - PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTER_ID_DESC - PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTE_STATUS_ASC - PROPOSAL_VOTES_VARIANCE_SAMPLE_VOTE_STATUS_DESC - PROPOSER_THRESHOLDS_AVERAGE_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_AVERAGE_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_AVERAGE_ID_ASC - PROPOSER_THRESHOLDS_AVERAGE_ID_DESC - PROPOSER_THRESHOLDS_AVERAGE_VALUE_ASC - PROPOSER_THRESHOLDS_AVERAGE_VALUE_DESC - PROPOSER_THRESHOLDS_COUNT_ASC - PROPOSER_THRESHOLDS_COUNT_DESC - PROPOSER_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_DISTINCT_COUNT_ID_ASC - PROPOSER_THRESHOLDS_DISTINCT_COUNT_ID_DESC - PROPOSER_THRESHOLDS_DISTINCT_COUNT_VALUE_ASC - PROPOSER_THRESHOLDS_DISTINCT_COUNT_VALUE_DESC - PROPOSER_THRESHOLDS_MAX_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_MAX_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_MAX_ID_ASC - PROPOSER_THRESHOLDS_MAX_ID_DESC - PROPOSER_THRESHOLDS_MAX_VALUE_ASC - PROPOSER_THRESHOLDS_MAX_VALUE_DESC - PROPOSER_THRESHOLDS_MIN_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_MIN_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_MIN_ID_ASC - PROPOSER_THRESHOLDS_MIN_ID_DESC - PROPOSER_THRESHOLDS_MIN_VALUE_ASC - PROPOSER_THRESHOLDS_MIN_VALUE_DESC - PROPOSER_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_STDDEV_POPULATION_ID_ASC - PROPOSER_THRESHOLDS_STDDEV_POPULATION_ID_DESC - PROPOSER_THRESHOLDS_STDDEV_POPULATION_VALUE_ASC - PROPOSER_THRESHOLDS_STDDEV_POPULATION_VALUE_DESC - PROPOSER_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_STDDEV_SAMPLE_ID_ASC - PROPOSER_THRESHOLDS_STDDEV_SAMPLE_ID_DESC - PROPOSER_THRESHOLDS_STDDEV_SAMPLE_VALUE_ASC - PROPOSER_THRESHOLDS_STDDEV_SAMPLE_VALUE_DESC - PROPOSER_THRESHOLDS_SUM_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_SUM_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_SUM_ID_ASC - PROPOSER_THRESHOLDS_SUM_ID_DESC - PROPOSER_THRESHOLDS_SUM_VALUE_ASC - PROPOSER_THRESHOLDS_SUM_VALUE_DESC - PROPOSER_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_VARIANCE_POPULATION_ID_ASC - PROPOSER_THRESHOLDS_VARIANCE_POPULATION_ID_DESC - PROPOSER_THRESHOLDS_VARIANCE_POPULATION_VALUE_ASC - PROPOSER_THRESHOLDS_VARIANCE_POPULATION_VALUE_DESC - PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC - PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC - PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC - PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC - PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_VALUE_ASC - PROPOSER_THRESHOLDS_VARIANCE_SAMPLE_VALUE_DESC - PUBLIC_KEYS_AVERAGE_BLOCK_ID_ASC - PUBLIC_KEYS_AVERAGE_BLOCK_ID_DESC - PUBLIC_KEYS_AVERAGE_COMPRESSED_ASC - PUBLIC_KEYS_AVERAGE_COMPRESSED_DESC - PUBLIC_KEYS_AVERAGE_HISTORY_ASC - PUBLIC_KEYS_AVERAGE_HISTORY_DESC - PUBLIC_KEYS_AVERAGE_ID_ASC - PUBLIC_KEYS_AVERAGE_ID_DESC - PUBLIC_KEYS_AVERAGE_UNCOMPRESSED_ASC - PUBLIC_KEYS_AVERAGE_UNCOMPRESSED_DESC - PUBLIC_KEYS_COUNT_ASC - PUBLIC_KEYS_COUNT_DESC - PUBLIC_KEYS_DISTINCT_COUNT_BLOCK_ID_ASC - PUBLIC_KEYS_DISTINCT_COUNT_BLOCK_ID_DESC - PUBLIC_KEYS_DISTINCT_COUNT_COMPRESSED_ASC - PUBLIC_KEYS_DISTINCT_COUNT_COMPRESSED_DESC - PUBLIC_KEYS_DISTINCT_COUNT_HISTORY_ASC - PUBLIC_KEYS_DISTINCT_COUNT_HISTORY_DESC - PUBLIC_KEYS_DISTINCT_COUNT_ID_ASC - PUBLIC_KEYS_DISTINCT_COUNT_ID_DESC - PUBLIC_KEYS_DISTINCT_COUNT_UNCOMPRESSED_ASC - PUBLIC_KEYS_DISTINCT_COUNT_UNCOMPRESSED_DESC - PUBLIC_KEYS_MAX_BLOCK_ID_ASC - PUBLIC_KEYS_MAX_BLOCK_ID_DESC - PUBLIC_KEYS_MAX_COMPRESSED_ASC - PUBLIC_KEYS_MAX_COMPRESSED_DESC - PUBLIC_KEYS_MAX_HISTORY_ASC - PUBLIC_KEYS_MAX_HISTORY_DESC - PUBLIC_KEYS_MAX_ID_ASC - PUBLIC_KEYS_MAX_ID_DESC - PUBLIC_KEYS_MAX_UNCOMPRESSED_ASC - PUBLIC_KEYS_MAX_UNCOMPRESSED_DESC - PUBLIC_KEYS_MIN_BLOCK_ID_ASC - PUBLIC_KEYS_MIN_BLOCK_ID_DESC - PUBLIC_KEYS_MIN_COMPRESSED_ASC - PUBLIC_KEYS_MIN_COMPRESSED_DESC - PUBLIC_KEYS_MIN_HISTORY_ASC - PUBLIC_KEYS_MIN_HISTORY_DESC - PUBLIC_KEYS_MIN_ID_ASC - PUBLIC_KEYS_MIN_ID_DESC - PUBLIC_KEYS_MIN_UNCOMPRESSED_ASC - PUBLIC_KEYS_MIN_UNCOMPRESSED_DESC - PUBLIC_KEYS_STDDEV_POPULATION_BLOCK_ID_ASC - PUBLIC_KEYS_STDDEV_POPULATION_BLOCK_ID_DESC - PUBLIC_KEYS_STDDEV_POPULATION_COMPRESSED_ASC - PUBLIC_KEYS_STDDEV_POPULATION_COMPRESSED_DESC - PUBLIC_KEYS_STDDEV_POPULATION_HISTORY_ASC - PUBLIC_KEYS_STDDEV_POPULATION_HISTORY_DESC - PUBLIC_KEYS_STDDEV_POPULATION_ID_ASC - PUBLIC_KEYS_STDDEV_POPULATION_ID_DESC - PUBLIC_KEYS_STDDEV_POPULATION_UNCOMPRESSED_ASC - PUBLIC_KEYS_STDDEV_POPULATION_UNCOMPRESSED_DESC - PUBLIC_KEYS_STDDEV_SAMPLE_BLOCK_ID_ASC - PUBLIC_KEYS_STDDEV_SAMPLE_BLOCK_ID_DESC - PUBLIC_KEYS_STDDEV_SAMPLE_COMPRESSED_ASC - PUBLIC_KEYS_STDDEV_SAMPLE_COMPRESSED_DESC - PUBLIC_KEYS_STDDEV_SAMPLE_HISTORY_ASC - PUBLIC_KEYS_STDDEV_SAMPLE_HISTORY_DESC - PUBLIC_KEYS_STDDEV_SAMPLE_ID_ASC - PUBLIC_KEYS_STDDEV_SAMPLE_ID_DESC - PUBLIC_KEYS_STDDEV_SAMPLE_UNCOMPRESSED_ASC - PUBLIC_KEYS_STDDEV_SAMPLE_UNCOMPRESSED_DESC - PUBLIC_KEYS_SUM_BLOCK_ID_ASC - PUBLIC_KEYS_SUM_BLOCK_ID_DESC - PUBLIC_KEYS_SUM_COMPRESSED_ASC - PUBLIC_KEYS_SUM_COMPRESSED_DESC - PUBLIC_KEYS_SUM_HISTORY_ASC - PUBLIC_KEYS_SUM_HISTORY_DESC - PUBLIC_KEYS_SUM_ID_ASC - PUBLIC_KEYS_SUM_ID_DESC - PUBLIC_KEYS_SUM_UNCOMPRESSED_ASC - PUBLIC_KEYS_SUM_UNCOMPRESSED_DESC - PUBLIC_KEYS_VARIANCE_POPULATION_BLOCK_ID_ASC - PUBLIC_KEYS_VARIANCE_POPULATION_BLOCK_ID_DESC - PUBLIC_KEYS_VARIANCE_POPULATION_COMPRESSED_ASC - PUBLIC_KEYS_VARIANCE_POPULATION_COMPRESSED_DESC - PUBLIC_KEYS_VARIANCE_POPULATION_HISTORY_ASC - PUBLIC_KEYS_VARIANCE_POPULATION_HISTORY_DESC - PUBLIC_KEYS_VARIANCE_POPULATION_ID_ASC - PUBLIC_KEYS_VARIANCE_POPULATION_ID_DESC - PUBLIC_KEYS_VARIANCE_POPULATION_UNCOMPRESSED_ASC - PUBLIC_KEYS_VARIANCE_POPULATION_UNCOMPRESSED_DESC - PUBLIC_KEYS_VARIANCE_SAMPLE_BLOCK_ID_ASC - PUBLIC_KEYS_VARIANCE_SAMPLE_BLOCK_ID_DESC - PUBLIC_KEYS_VARIANCE_SAMPLE_COMPRESSED_ASC - PUBLIC_KEYS_VARIANCE_SAMPLE_COMPRESSED_DESC - PUBLIC_KEYS_VARIANCE_SAMPLE_HISTORY_ASC - PUBLIC_KEYS_VARIANCE_SAMPLE_HISTORY_DESC - PUBLIC_KEYS_VARIANCE_SAMPLE_ID_ASC - PUBLIC_KEYS_VARIANCE_SAMPLE_ID_DESC - PUBLIC_KEYS_VARIANCE_SAMPLE_UNCOMPRESSED_ASC - PUBLIC_KEYS_VARIANCE_SAMPLE_UNCOMPRESSED_DESC - SESSIONS_AVERAGE_BLOCK_ID_ASC - SESSIONS_AVERAGE_BLOCK_ID_DESC - SESSIONS_AVERAGE_BLOCK_NUMBER_ASC - SESSIONS_AVERAGE_BLOCK_NUMBER_DESC - SESSIONS_AVERAGE_ID_ASC - SESSIONS_AVERAGE_ID_DESC - SESSIONS_AVERAGE_PUBLIC_KEY_ID_ASC - SESSIONS_AVERAGE_PUBLIC_KEY_ID_DESC - SESSIONS_COUNT_ASC - SESSIONS_COUNT_DESC - SESSIONS_DISTINCT_COUNT_BLOCK_ID_ASC - SESSIONS_DISTINCT_COUNT_BLOCK_ID_DESC - SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - SESSIONS_DISTINCT_COUNT_ID_ASC - SESSIONS_DISTINCT_COUNT_ID_DESC - SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_ASC - SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_DESC - SESSIONS_MAX_BLOCK_ID_ASC - SESSIONS_MAX_BLOCK_ID_DESC - SESSIONS_MAX_BLOCK_NUMBER_ASC - SESSIONS_MAX_BLOCK_NUMBER_DESC - SESSIONS_MAX_ID_ASC - SESSIONS_MAX_ID_DESC - SESSIONS_MAX_PUBLIC_KEY_ID_ASC - SESSIONS_MAX_PUBLIC_KEY_ID_DESC - SESSIONS_MIN_BLOCK_ID_ASC - SESSIONS_MIN_BLOCK_ID_DESC - SESSIONS_MIN_BLOCK_NUMBER_ASC - SESSIONS_MIN_BLOCK_NUMBER_DESC - SESSIONS_MIN_ID_ASC - SESSIONS_MIN_ID_DESC - SESSIONS_MIN_PUBLIC_KEY_ID_ASC - SESSIONS_MIN_PUBLIC_KEY_ID_DESC - SESSIONS_STDDEV_POPULATION_BLOCK_ID_ASC - SESSIONS_STDDEV_POPULATION_BLOCK_ID_DESC - SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - SESSIONS_STDDEV_POPULATION_ID_ASC - SESSIONS_STDDEV_POPULATION_ID_DESC - SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_ASC - SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_DESC - SESSIONS_STDDEV_SAMPLE_BLOCK_ID_ASC - SESSIONS_STDDEV_SAMPLE_BLOCK_ID_DESC - SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - SESSIONS_STDDEV_SAMPLE_ID_ASC - SESSIONS_STDDEV_SAMPLE_ID_DESC - SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_ASC - SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_DESC - SESSIONS_SUM_BLOCK_ID_ASC - SESSIONS_SUM_BLOCK_ID_DESC - SESSIONS_SUM_BLOCK_NUMBER_ASC - SESSIONS_SUM_BLOCK_NUMBER_DESC - SESSIONS_SUM_ID_ASC - SESSIONS_SUM_ID_DESC - SESSIONS_SUM_PUBLIC_KEY_ID_ASC - SESSIONS_SUM_PUBLIC_KEY_ID_DESC - SESSIONS_VARIANCE_POPULATION_BLOCK_ID_ASC - SESSIONS_VARIANCE_POPULATION_BLOCK_ID_DESC - SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - SESSIONS_VARIANCE_POPULATION_ID_ASC - SESSIONS_VARIANCE_POPULATION_ID_DESC - SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_ASC - SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_DESC - SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_ASC - SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_DESC - SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - SESSIONS_VARIANCE_SAMPLE_ID_ASC - SESSIONS_VARIANCE_SAMPLE_ID_DESC - SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_ASC - SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_DESC - SIGNATURE_THRESHOLDS_AVERAGE_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_AVERAGE_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_AVERAGE_CURRENT_ASC - SIGNATURE_THRESHOLDS_AVERAGE_CURRENT_DESC - SIGNATURE_THRESHOLDS_AVERAGE_ID_ASC - SIGNATURE_THRESHOLDS_AVERAGE_ID_DESC - SIGNATURE_THRESHOLDS_AVERAGE_NEXT_ASC - SIGNATURE_THRESHOLDS_AVERAGE_NEXT_DESC - SIGNATURE_THRESHOLDS_AVERAGE_PENDING_ASC - SIGNATURE_THRESHOLDS_AVERAGE_PENDING_DESC - SIGNATURE_THRESHOLDS_COUNT_ASC - SIGNATURE_THRESHOLDS_COUNT_DESC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_ID_ASC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_ID_DESC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_NEXT_ASC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_NEXT_DESC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_PENDING_ASC - SIGNATURE_THRESHOLDS_DISTINCT_COUNT_PENDING_DESC - SIGNATURE_THRESHOLDS_MAX_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_MAX_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_MAX_CURRENT_ASC - SIGNATURE_THRESHOLDS_MAX_CURRENT_DESC - SIGNATURE_THRESHOLDS_MAX_ID_ASC - SIGNATURE_THRESHOLDS_MAX_ID_DESC - SIGNATURE_THRESHOLDS_MAX_NEXT_ASC - SIGNATURE_THRESHOLDS_MAX_NEXT_DESC - SIGNATURE_THRESHOLDS_MAX_PENDING_ASC - SIGNATURE_THRESHOLDS_MAX_PENDING_DESC - SIGNATURE_THRESHOLDS_MIN_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_MIN_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_MIN_CURRENT_ASC - SIGNATURE_THRESHOLDS_MIN_CURRENT_DESC - SIGNATURE_THRESHOLDS_MIN_ID_ASC - SIGNATURE_THRESHOLDS_MIN_ID_DESC - SIGNATURE_THRESHOLDS_MIN_NEXT_ASC - SIGNATURE_THRESHOLDS_MIN_NEXT_DESC - SIGNATURE_THRESHOLDS_MIN_PENDING_ASC - SIGNATURE_THRESHOLDS_MIN_PENDING_DESC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_ID_ASC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_ID_DESC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_NEXT_ASC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_NEXT_DESC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_PENDING_ASC - SIGNATURE_THRESHOLDS_STDDEV_POPULATION_PENDING_DESC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_ID_ASC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_ID_DESC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC - SIGNATURE_THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC - SIGNATURE_THRESHOLDS_SUM_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_SUM_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_SUM_CURRENT_ASC - SIGNATURE_THRESHOLDS_SUM_CURRENT_DESC - SIGNATURE_THRESHOLDS_SUM_ID_ASC - SIGNATURE_THRESHOLDS_SUM_ID_DESC - SIGNATURE_THRESHOLDS_SUM_NEXT_ASC - SIGNATURE_THRESHOLDS_SUM_NEXT_DESC - SIGNATURE_THRESHOLDS_SUM_PENDING_ASC - SIGNATURE_THRESHOLDS_SUM_PENDING_DESC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_ID_ASC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_ID_DESC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC - SIGNATURE_THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_ASC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_BLOCK_ID_DESC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_ID_ASC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_ID_DESC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC - SIGNATURE_THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC - SPEC_VERSION_ASC - SPEC_VERSION_DESC - STATE_ROOT_ASC - STATE_ROOT_DESC - TIMESTAMP_ASC - TIMESTAMP_DESC - UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_AVERAGE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_AVERAGE_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_AVERAGE_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_COUNT_ASC - UNSIGNED_PROPOSALS_QUEUES_COUNT_DESC - UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_DISTINCT_COUNT_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_MAX_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_MAX_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_MAX_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_MIN_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_MIN_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_MIN_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_POPULATION_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_STDDEV_SAMPLE_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_SUM_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_SUM_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_SUM_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_POPULATION_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_ID_DESC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_ID_ASC - UNSIGNED_PROPOSALS_QUEUES_VARIANCE_SAMPLE_ID_DESC -} - -"Grouping methods for `CountryCode` for usage during aggregation." -enum CountryCodesGroupBy { - CODE -} - -"Methods to use when ordering `CountryCode`." -enum CountryCodesOrderBy { - ACCOUNTS_AVERAGE_COUNTRY_CODE_ID_ASC - ACCOUNTS_AVERAGE_COUNTRY_CODE_ID_DESC - ACCOUNTS_AVERAGE_CREATED_AT_ASC - ACCOUNTS_AVERAGE_CREATED_AT_DESC - ACCOUNTS_AVERAGE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_AVERAGE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_AVERAGE_CREATOR_ID_ASC - ACCOUNTS_AVERAGE_CREATOR_ID_DESC - ACCOUNTS_AVERAGE_DISPLAY_ASC - ACCOUNTS_AVERAGE_DISPLAY_DESC - ACCOUNTS_AVERAGE_EMAIL_ASC - ACCOUNTS_AVERAGE_EMAIL_DESC - ACCOUNTS_AVERAGE_ID_ASC - ACCOUNTS_AVERAGE_ID_DESC - ACCOUNTS_AVERAGE_IMAGE_ASC - ACCOUNTS_AVERAGE_IMAGE_DESC - ACCOUNTS_AVERAGE_LEGAL_ASC - ACCOUNTS_AVERAGE_LEGAL_DESC - ACCOUNTS_AVERAGE_PGP_FINGERPRINT_ASC - ACCOUNTS_AVERAGE_PGP_FINGERPRINT_DESC - ACCOUNTS_AVERAGE_RIOT_ASC - ACCOUNTS_AVERAGE_RIOT_DESC - ACCOUNTS_AVERAGE_TWITTER_ASC - ACCOUNTS_AVERAGE_TWITTER_DESC - ACCOUNTS_AVERAGE_WEB_ASC - ACCOUNTS_AVERAGE_WEB_DESC - ACCOUNTS_COUNT_ASC - ACCOUNTS_COUNT_DESC - ACCOUNTS_DISTINCT_COUNT_COUNTRY_CODE_ID_ASC - ACCOUNTS_DISTINCT_COUNT_COUNTRY_CODE_ID_DESC - ACCOUNTS_DISTINCT_COUNT_CREATED_AT_ASC - ACCOUNTS_DISTINCT_COUNT_CREATED_AT_DESC - ACCOUNTS_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_DISTINCT_COUNT_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_DISTINCT_COUNT_CREATOR_ID_ASC - ACCOUNTS_DISTINCT_COUNT_CREATOR_ID_DESC - ACCOUNTS_DISTINCT_COUNT_DISPLAY_ASC - ACCOUNTS_DISTINCT_COUNT_DISPLAY_DESC - ACCOUNTS_DISTINCT_COUNT_EMAIL_ASC - ACCOUNTS_DISTINCT_COUNT_EMAIL_DESC - ACCOUNTS_DISTINCT_COUNT_ID_ASC - ACCOUNTS_DISTINCT_COUNT_ID_DESC - ACCOUNTS_DISTINCT_COUNT_IMAGE_ASC - ACCOUNTS_DISTINCT_COUNT_IMAGE_DESC - ACCOUNTS_DISTINCT_COUNT_LEGAL_ASC - ACCOUNTS_DISTINCT_COUNT_LEGAL_DESC - ACCOUNTS_DISTINCT_COUNT_PGP_FINGERPRINT_ASC - ACCOUNTS_DISTINCT_COUNT_PGP_FINGERPRINT_DESC - ACCOUNTS_DISTINCT_COUNT_RIOT_ASC - ACCOUNTS_DISTINCT_COUNT_RIOT_DESC - ACCOUNTS_DISTINCT_COUNT_TWITTER_ASC - ACCOUNTS_DISTINCT_COUNT_TWITTER_DESC - ACCOUNTS_DISTINCT_COUNT_WEB_ASC - ACCOUNTS_DISTINCT_COUNT_WEB_DESC - ACCOUNTS_MAX_COUNTRY_CODE_ID_ASC - ACCOUNTS_MAX_COUNTRY_CODE_ID_DESC - ACCOUNTS_MAX_CREATED_AT_ASC - ACCOUNTS_MAX_CREATED_AT_DESC - ACCOUNTS_MAX_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_MAX_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_MAX_CREATOR_ID_ASC - ACCOUNTS_MAX_CREATOR_ID_DESC - ACCOUNTS_MAX_DISPLAY_ASC - ACCOUNTS_MAX_DISPLAY_DESC - ACCOUNTS_MAX_EMAIL_ASC - ACCOUNTS_MAX_EMAIL_DESC - ACCOUNTS_MAX_ID_ASC - ACCOUNTS_MAX_ID_DESC - ACCOUNTS_MAX_IMAGE_ASC - ACCOUNTS_MAX_IMAGE_DESC - ACCOUNTS_MAX_LEGAL_ASC - ACCOUNTS_MAX_LEGAL_DESC - ACCOUNTS_MAX_PGP_FINGERPRINT_ASC - ACCOUNTS_MAX_PGP_FINGERPRINT_DESC - ACCOUNTS_MAX_RIOT_ASC - ACCOUNTS_MAX_RIOT_DESC - ACCOUNTS_MAX_TWITTER_ASC - ACCOUNTS_MAX_TWITTER_DESC - ACCOUNTS_MAX_WEB_ASC - ACCOUNTS_MAX_WEB_DESC - ACCOUNTS_MIN_COUNTRY_CODE_ID_ASC - ACCOUNTS_MIN_COUNTRY_CODE_ID_DESC - ACCOUNTS_MIN_CREATED_AT_ASC - ACCOUNTS_MIN_CREATED_AT_DESC - ACCOUNTS_MIN_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_MIN_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_MIN_CREATOR_ID_ASC - ACCOUNTS_MIN_CREATOR_ID_DESC - ACCOUNTS_MIN_DISPLAY_ASC - ACCOUNTS_MIN_DISPLAY_DESC - ACCOUNTS_MIN_EMAIL_ASC - ACCOUNTS_MIN_EMAIL_DESC - ACCOUNTS_MIN_ID_ASC - ACCOUNTS_MIN_ID_DESC - ACCOUNTS_MIN_IMAGE_ASC - ACCOUNTS_MIN_IMAGE_DESC - ACCOUNTS_MIN_LEGAL_ASC - ACCOUNTS_MIN_LEGAL_DESC - ACCOUNTS_MIN_PGP_FINGERPRINT_ASC - ACCOUNTS_MIN_PGP_FINGERPRINT_DESC - ACCOUNTS_MIN_RIOT_ASC - ACCOUNTS_MIN_RIOT_DESC - ACCOUNTS_MIN_TWITTER_ASC - ACCOUNTS_MIN_TWITTER_DESC - ACCOUNTS_MIN_WEB_ASC - ACCOUNTS_MIN_WEB_DESC - ACCOUNTS_STDDEV_POPULATION_COUNTRY_CODE_ID_ASC - ACCOUNTS_STDDEV_POPULATION_COUNTRY_CODE_ID_DESC - ACCOUNTS_STDDEV_POPULATION_CREATED_AT_ASC - ACCOUNTS_STDDEV_POPULATION_CREATED_AT_DESC - ACCOUNTS_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_STDDEV_POPULATION_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_STDDEV_POPULATION_CREATOR_ID_ASC - ACCOUNTS_STDDEV_POPULATION_CREATOR_ID_DESC - ACCOUNTS_STDDEV_POPULATION_DISPLAY_ASC - ACCOUNTS_STDDEV_POPULATION_DISPLAY_DESC - ACCOUNTS_STDDEV_POPULATION_EMAIL_ASC - ACCOUNTS_STDDEV_POPULATION_EMAIL_DESC - ACCOUNTS_STDDEV_POPULATION_ID_ASC - ACCOUNTS_STDDEV_POPULATION_ID_DESC - ACCOUNTS_STDDEV_POPULATION_IMAGE_ASC - ACCOUNTS_STDDEV_POPULATION_IMAGE_DESC - ACCOUNTS_STDDEV_POPULATION_LEGAL_ASC - ACCOUNTS_STDDEV_POPULATION_LEGAL_DESC - ACCOUNTS_STDDEV_POPULATION_PGP_FINGERPRINT_ASC - ACCOUNTS_STDDEV_POPULATION_PGP_FINGERPRINT_DESC - ACCOUNTS_STDDEV_POPULATION_RIOT_ASC - ACCOUNTS_STDDEV_POPULATION_RIOT_DESC - ACCOUNTS_STDDEV_POPULATION_TWITTER_ASC - ACCOUNTS_STDDEV_POPULATION_TWITTER_DESC - ACCOUNTS_STDDEV_POPULATION_WEB_ASC - ACCOUNTS_STDDEV_POPULATION_WEB_DESC - ACCOUNTS_STDDEV_SAMPLE_COUNTRY_CODE_ID_ASC - ACCOUNTS_STDDEV_SAMPLE_COUNTRY_CODE_ID_DESC - ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_ASC - ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_DESC - ACCOUNTS_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_STDDEV_SAMPLE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_STDDEV_SAMPLE_CREATOR_ID_ASC - ACCOUNTS_STDDEV_SAMPLE_CREATOR_ID_DESC - ACCOUNTS_STDDEV_SAMPLE_DISPLAY_ASC - ACCOUNTS_STDDEV_SAMPLE_DISPLAY_DESC - ACCOUNTS_STDDEV_SAMPLE_EMAIL_ASC - ACCOUNTS_STDDEV_SAMPLE_EMAIL_DESC - ACCOUNTS_STDDEV_SAMPLE_ID_ASC - ACCOUNTS_STDDEV_SAMPLE_ID_DESC - ACCOUNTS_STDDEV_SAMPLE_IMAGE_ASC - ACCOUNTS_STDDEV_SAMPLE_IMAGE_DESC - ACCOUNTS_STDDEV_SAMPLE_LEGAL_ASC - ACCOUNTS_STDDEV_SAMPLE_LEGAL_DESC - ACCOUNTS_STDDEV_SAMPLE_PGP_FINGERPRINT_ASC - ACCOUNTS_STDDEV_SAMPLE_PGP_FINGERPRINT_DESC - ACCOUNTS_STDDEV_SAMPLE_RIOT_ASC - ACCOUNTS_STDDEV_SAMPLE_RIOT_DESC - ACCOUNTS_STDDEV_SAMPLE_TWITTER_ASC - ACCOUNTS_STDDEV_SAMPLE_TWITTER_DESC - ACCOUNTS_STDDEV_SAMPLE_WEB_ASC - ACCOUNTS_STDDEV_SAMPLE_WEB_DESC - ACCOUNTS_SUM_COUNTRY_CODE_ID_ASC - ACCOUNTS_SUM_COUNTRY_CODE_ID_DESC - ACCOUNTS_SUM_CREATED_AT_ASC - ACCOUNTS_SUM_CREATED_AT_DESC - ACCOUNTS_SUM_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_SUM_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_SUM_CREATOR_ID_ASC - ACCOUNTS_SUM_CREATOR_ID_DESC - ACCOUNTS_SUM_DISPLAY_ASC - ACCOUNTS_SUM_DISPLAY_DESC - ACCOUNTS_SUM_EMAIL_ASC - ACCOUNTS_SUM_EMAIL_DESC - ACCOUNTS_SUM_ID_ASC - ACCOUNTS_SUM_ID_DESC - ACCOUNTS_SUM_IMAGE_ASC - ACCOUNTS_SUM_IMAGE_DESC - ACCOUNTS_SUM_LEGAL_ASC - ACCOUNTS_SUM_LEGAL_DESC - ACCOUNTS_SUM_PGP_FINGERPRINT_ASC - ACCOUNTS_SUM_PGP_FINGERPRINT_DESC - ACCOUNTS_SUM_RIOT_ASC - ACCOUNTS_SUM_RIOT_DESC - ACCOUNTS_SUM_TWITTER_ASC - ACCOUNTS_SUM_TWITTER_DESC - ACCOUNTS_SUM_WEB_ASC - ACCOUNTS_SUM_WEB_DESC - ACCOUNTS_VARIANCE_POPULATION_COUNTRY_CODE_ID_ASC - ACCOUNTS_VARIANCE_POPULATION_COUNTRY_CODE_ID_DESC - ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_ASC - ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_DESC - ACCOUNTS_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_VARIANCE_POPULATION_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_VARIANCE_POPULATION_CREATOR_ID_ASC - ACCOUNTS_VARIANCE_POPULATION_CREATOR_ID_DESC - ACCOUNTS_VARIANCE_POPULATION_DISPLAY_ASC - ACCOUNTS_VARIANCE_POPULATION_DISPLAY_DESC - ACCOUNTS_VARIANCE_POPULATION_EMAIL_ASC - ACCOUNTS_VARIANCE_POPULATION_EMAIL_DESC - ACCOUNTS_VARIANCE_POPULATION_ID_ASC - ACCOUNTS_VARIANCE_POPULATION_ID_DESC - ACCOUNTS_VARIANCE_POPULATION_IMAGE_ASC - ACCOUNTS_VARIANCE_POPULATION_IMAGE_DESC - ACCOUNTS_VARIANCE_POPULATION_LEGAL_ASC - ACCOUNTS_VARIANCE_POPULATION_LEGAL_DESC - ACCOUNTS_VARIANCE_POPULATION_PGP_FINGERPRINT_ASC - ACCOUNTS_VARIANCE_POPULATION_PGP_FINGERPRINT_DESC - ACCOUNTS_VARIANCE_POPULATION_RIOT_ASC - ACCOUNTS_VARIANCE_POPULATION_RIOT_DESC - ACCOUNTS_VARIANCE_POPULATION_TWITTER_ASC - ACCOUNTS_VARIANCE_POPULATION_TWITTER_DESC - ACCOUNTS_VARIANCE_POPULATION_WEB_ASC - ACCOUNTS_VARIANCE_POPULATION_WEB_DESC - ACCOUNTS_VARIANCE_SAMPLE_COUNTRY_CODE_ID_ASC - ACCOUNTS_VARIANCE_SAMPLE_COUNTRY_CODE_ID_DESC - ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_ASC - ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_DESC - ACCOUNTS_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_ASC - ACCOUNTS_VARIANCE_SAMPLE_CREATE_AT_BLOCK_ID_DESC - ACCOUNTS_VARIANCE_SAMPLE_CREATOR_ID_ASC - ACCOUNTS_VARIANCE_SAMPLE_CREATOR_ID_DESC - ACCOUNTS_VARIANCE_SAMPLE_DISPLAY_ASC - ACCOUNTS_VARIANCE_SAMPLE_DISPLAY_DESC - ACCOUNTS_VARIANCE_SAMPLE_EMAIL_ASC - ACCOUNTS_VARIANCE_SAMPLE_EMAIL_DESC - ACCOUNTS_VARIANCE_SAMPLE_ID_ASC - ACCOUNTS_VARIANCE_SAMPLE_ID_DESC - ACCOUNTS_VARIANCE_SAMPLE_IMAGE_ASC - ACCOUNTS_VARIANCE_SAMPLE_IMAGE_DESC - ACCOUNTS_VARIANCE_SAMPLE_LEGAL_ASC - ACCOUNTS_VARIANCE_SAMPLE_LEGAL_DESC - ACCOUNTS_VARIANCE_SAMPLE_PGP_FINGERPRINT_ASC - ACCOUNTS_VARIANCE_SAMPLE_PGP_FINGERPRINT_DESC - ACCOUNTS_VARIANCE_SAMPLE_RIOT_ASC - ACCOUNTS_VARIANCE_SAMPLE_RIOT_DESC - ACCOUNTS_VARIANCE_SAMPLE_TWITTER_ASC - ACCOUNTS_VARIANCE_SAMPLE_TWITTER_DESC - ACCOUNTS_VARIANCE_SAMPLE_WEB_ASC - ACCOUNTS_VARIANCE_SAMPLE_WEB_DESC - CODE_ASC - CODE_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -"Grouping methods for `Event` for usage during aggregation." -enum EventsGroupBy { - ARGUMENTS - BLOCK_ID - BLOCK_NUMBER - DATA - DOCS - EXTRINSIC_ID - INDEX - METHOD - MODULE - TIMESTAMP - TIMESTAMP_TRUNCATED_TO_DAY - TIMESTAMP_TRUNCATED_TO_HOUR -} - -"Methods to use when ordering `Event`." -enum EventsOrderBy { - ARGUMENTS_ASC - ARGUMENTS_DESC - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - DATA_ASC - DATA_DESC - DOCS_ASC - DOCS_DESC - EXTRINSIC_ID_ASC - EXTRINSIC_ID_DESC - ID_ASC - ID_DESC - INDEX_ASC - INDEX_DESC - METHOD_ASC - METHOD_DESC - MODULE_ASC - MODULE_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - TIMESTAMP_ASC - TIMESTAMP_DESC -} - -"Grouping methods for `Extrinsic` for usage during aggregation." -enum ExtrinsicsGroupBy { - ARGUMENTS - BLOCK_ID - BLOCK_NUMBER - HASH - INDEX - IS_SIGNED - IS_SUCCESS - METHOD - MODULE - SIGNER_ID -} - -"Methods to use when ordering `Extrinsic`." -enum ExtrinsicsOrderBy { - ARGUMENTS_ASC - ARGUMENTS_DESC - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - EVENTS_AVERAGE_ARGUMENTS_ASC - EVENTS_AVERAGE_ARGUMENTS_DESC - EVENTS_AVERAGE_BLOCK_ID_ASC - EVENTS_AVERAGE_BLOCK_ID_DESC - EVENTS_AVERAGE_BLOCK_NUMBER_ASC - EVENTS_AVERAGE_BLOCK_NUMBER_DESC - EVENTS_AVERAGE_DATA_ASC - EVENTS_AVERAGE_DATA_DESC - EVENTS_AVERAGE_DOCS_ASC - EVENTS_AVERAGE_DOCS_DESC - EVENTS_AVERAGE_EXTRINSIC_ID_ASC - EVENTS_AVERAGE_EXTRINSIC_ID_DESC - EVENTS_AVERAGE_ID_ASC - EVENTS_AVERAGE_ID_DESC - EVENTS_AVERAGE_INDEX_ASC - EVENTS_AVERAGE_INDEX_DESC - EVENTS_AVERAGE_METHOD_ASC - EVENTS_AVERAGE_METHOD_DESC - EVENTS_AVERAGE_MODULE_ASC - EVENTS_AVERAGE_MODULE_DESC - EVENTS_AVERAGE_TIMESTAMP_ASC - EVENTS_AVERAGE_TIMESTAMP_DESC - EVENTS_COUNT_ASC - EVENTS_COUNT_DESC - EVENTS_DISTINCT_COUNT_ARGUMENTS_ASC - EVENTS_DISTINCT_COUNT_ARGUMENTS_DESC - EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC - EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC - EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - EVENTS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - EVENTS_DISTINCT_COUNT_DATA_ASC - EVENTS_DISTINCT_COUNT_DATA_DESC - EVENTS_DISTINCT_COUNT_DOCS_ASC - EVENTS_DISTINCT_COUNT_DOCS_DESC - EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC - EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC - EVENTS_DISTINCT_COUNT_ID_ASC - EVENTS_DISTINCT_COUNT_ID_DESC - EVENTS_DISTINCT_COUNT_INDEX_ASC - EVENTS_DISTINCT_COUNT_INDEX_DESC - EVENTS_DISTINCT_COUNT_METHOD_ASC - EVENTS_DISTINCT_COUNT_METHOD_DESC - EVENTS_DISTINCT_COUNT_MODULE_ASC - EVENTS_DISTINCT_COUNT_MODULE_DESC - EVENTS_DISTINCT_COUNT_TIMESTAMP_ASC - EVENTS_DISTINCT_COUNT_TIMESTAMP_DESC - EVENTS_MAX_ARGUMENTS_ASC - EVENTS_MAX_ARGUMENTS_DESC - EVENTS_MAX_BLOCK_ID_ASC - EVENTS_MAX_BLOCK_ID_DESC - EVENTS_MAX_BLOCK_NUMBER_ASC - EVENTS_MAX_BLOCK_NUMBER_DESC - EVENTS_MAX_DATA_ASC - EVENTS_MAX_DATA_DESC - EVENTS_MAX_DOCS_ASC - EVENTS_MAX_DOCS_DESC - EVENTS_MAX_EXTRINSIC_ID_ASC - EVENTS_MAX_EXTRINSIC_ID_DESC - EVENTS_MAX_ID_ASC - EVENTS_MAX_ID_DESC - EVENTS_MAX_INDEX_ASC - EVENTS_MAX_INDEX_DESC - EVENTS_MAX_METHOD_ASC - EVENTS_MAX_METHOD_DESC - EVENTS_MAX_MODULE_ASC - EVENTS_MAX_MODULE_DESC - EVENTS_MAX_TIMESTAMP_ASC - EVENTS_MAX_TIMESTAMP_DESC - EVENTS_MIN_ARGUMENTS_ASC - EVENTS_MIN_ARGUMENTS_DESC - EVENTS_MIN_BLOCK_ID_ASC - EVENTS_MIN_BLOCK_ID_DESC - EVENTS_MIN_BLOCK_NUMBER_ASC - EVENTS_MIN_BLOCK_NUMBER_DESC - EVENTS_MIN_DATA_ASC - EVENTS_MIN_DATA_DESC - EVENTS_MIN_DOCS_ASC - EVENTS_MIN_DOCS_DESC - EVENTS_MIN_EXTRINSIC_ID_ASC - EVENTS_MIN_EXTRINSIC_ID_DESC - EVENTS_MIN_ID_ASC - EVENTS_MIN_ID_DESC - EVENTS_MIN_INDEX_ASC - EVENTS_MIN_INDEX_DESC - EVENTS_MIN_METHOD_ASC - EVENTS_MIN_METHOD_DESC - EVENTS_MIN_MODULE_ASC - EVENTS_MIN_MODULE_DESC - EVENTS_MIN_TIMESTAMP_ASC - EVENTS_MIN_TIMESTAMP_DESC - EVENTS_STDDEV_POPULATION_ARGUMENTS_ASC - EVENTS_STDDEV_POPULATION_ARGUMENTS_DESC - EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC - EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC - EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - EVENTS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - EVENTS_STDDEV_POPULATION_DATA_ASC - EVENTS_STDDEV_POPULATION_DATA_DESC - EVENTS_STDDEV_POPULATION_DOCS_ASC - EVENTS_STDDEV_POPULATION_DOCS_DESC - EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC - EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC - EVENTS_STDDEV_POPULATION_ID_ASC - EVENTS_STDDEV_POPULATION_ID_DESC - EVENTS_STDDEV_POPULATION_INDEX_ASC - EVENTS_STDDEV_POPULATION_INDEX_DESC - EVENTS_STDDEV_POPULATION_METHOD_ASC - EVENTS_STDDEV_POPULATION_METHOD_DESC - EVENTS_STDDEV_POPULATION_MODULE_ASC - EVENTS_STDDEV_POPULATION_MODULE_DESC - EVENTS_STDDEV_POPULATION_TIMESTAMP_ASC - EVENTS_STDDEV_POPULATION_TIMESTAMP_DESC - EVENTS_STDDEV_SAMPLE_ARGUMENTS_ASC - EVENTS_STDDEV_SAMPLE_ARGUMENTS_DESC - EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC - EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC - EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - EVENTS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - EVENTS_STDDEV_SAMPLE_DATA_ASC - EVENTS_STDDEV_SAMPLE_DATA_DESC - EVENTS_STDDEV_SAMPLE_DOCS_ASC - EVENTS_STDDEV_SAMPLE_DOCS_DESC - EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC - EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC - EVENTS_STDDEV_SAMPLE_ID_ASC - EVENTS_STDDEV_SAMPLE_ID_DESC - EVENTS_STDDEV_SAMPLE_INDEX_ASC - EVENTS_STDDEV_SAMPLE_INDEX_DESC - EVENTS_STDDEV_SAMPLE_METHOD_ASC - EVENTS_STDDEV_SAMPLE_METHOD_DESC - EVENTS_STDDEV_SAMPLE_MODULE_ASC - EVENTS_STDDEV_SAMPLE_MODULE_DESC - EVENTS_STDDEV_SAMPLE_TIMESTAMP_ASC - EVENTS_STDDEV_SAMPLE_TIMESTAMP_DESC - EVENTS_SUM_ARGUMENTS_ASC - EVENTS_SUM_ARGUMENTS_DESC - EVENTS_SUM_BLOCK_ID_ASC - EVENTS_SUM_BLOCK_ID_DESC - EVENTS_SUM_BLOCK_NUMBER_ASC - EVENTS_SUM_BLOCK_NUMBER_DESC - EVENTS_SUM_DATA_ASC - EVENTS_SUM_DATA_DESC - EVENTS_SUM_DOCS_ASC - EVENTS_SUM_DOCS_DESC - EVENTS_SUM_EXTRINSIC_ID_ASC - EVENTS_SUM_EXTRINSIC_ID_DESC - EVENTS_SUM_ID_ASC - EVENTS_SUM_ID_DESC - EVENTS_SUM_INDEX_ASC - EVENTS_SUM_INDEX_DESC - EVENTS_SUM_METHOD_ASC - EVENTS_SUM_METHOD_DESC - EVENTS_SUM_MODULE_ASC - EVENTS_SUM_MODULE_DESC - EVENTS_SUM_TIMESTAMP_ASC - EVENTS_SUM_TIMESTAMP_DESC - EVENTS_VARIANCE_POPULATION_ARGUMENTS_ASC - EVENTS_VARIANCE_POPULATION_ARGUMENTS_DESC - EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC - EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC - EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - EVENTS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - EVENTS_VARIANCE_POPULATION_DATA_ASC - EVENTS_VARIANCE_POPULATION_DATA_DESC - EVENTS_VARIANCE_POPULATION_DOCS_ASC - EVENTS_VARIANCE_POPULATION_DOCS_DESC - EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC - EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC - EVENTS_VARIANCE_POPULATION_ID_ASC - EVENTS_VARIANCE_POPULATION_ID_DESC - EVENTS_VARIANCE_POPULATION_INDEX_ASC - EVENTS_VARIANCE_POPULATION_INDEX_DESC - EVENTS_VARIANCE_POPULATION_METHOD_ASC - EVENTS_VARIANCE_POPULATION_METHOD_DESC - EVENTS_VARIANCE_POPULATION_MODULE_ASC - EVENTS_VARIANCE_POPULATION_MODULE_DESC - EVENTS_VARIANCE_POPULATION_TIMESTAMP_ASC - EVENTS_VARIANCE_POPULATION_TIMESTAMP_DESC - EVENTS_VARIANCE_SAMPLE_ARGUMENTS_ASC - EVENTS_VARIANCE_SAMPLE_ARGUMENTS_DESC - EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC - EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC - EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - EVENTS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - EVENTS_VARIANCE_SAMPLE_DATA_ASC - EVENTS_VARIANCE_SAMPLE_DATA_DESC - EVENTS_VARIANCE_SAMPLE_DOCS_ASC - EVENTS_VARIANCE_SAMPLE_DOCS_DESC - EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC - EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC - EVENTS_VARIANCE_SAMPLE_ID_ASC - EVENTS_VARIANCE_SAMPLE_ID_DESC - EVENTS_VARIANCE_SAMPLE_INDEX_ASC - EVENTS_VARIANCE_SAMPLE_INDEX_DESC - EVENTS_VARIANCE_SAMPLE_METHOD_ASC - EVENTS_VARIANCE_SAMPLE_METHOD_DESC - EVENTS_VARIANCE_SAMPLE_MODULE_ASC - EVENTS_VARIANCE_SAMPLE_MODULE_DESC - EVENTS_VARIANCE_SAMPLE_TIMESTAMP_ASC - EVENTS_VARIANCE_SAMPLE_TIMESTAMP_DESC - HASH_ASC - HASH_DESC - ID_ASC - ID_DESC - INDEX_ASC - INDEX_DESC - IS_SIGNED_ASC - IS_SIGNED_DESC - IS_SUCCESS_ASC - IS_SUCCESS_DESC - METHOD_ASC - METHOD_DESC - MODULE_ASC - MODULE_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SIGNER_ID_ASC - SIGNER_ID_DESC -} - -"Grouping methods for `HeartBeat` for usage during aggregation." -enum HeartBeatsGroupBy { - ACCOUNT_ID - BLOCK_NUMBER - SESSION_ID -} - -"Methods to use when ordering `HeartBeat`." -enum HeartBeatsOrderBy { - ACCOUNT_ID_ASC - ACCOUNT_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SESSION_ID_ASC - SESSION_ID_DESC -} - -"Grouping methods for `KeygenThreshold` for usage during aggregation." -enum KeygenThresholdsGroupBy { - BLOCK_ID - CURRENT - NEXT - PENDING -} - -"Methods to use when ordering `KeygenThreshold`." -enum KeygenThresholdsOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - CURRENT_ASC - CURRENT_DESC - ID_ASC - ID_DESC - NATURAL - NEXT_ASC - NEXT_DESC - PENDING_ASC - PENDING_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -"Grouping methods for `ProposalCounter` for usage during aggregation." -enum ProposalCountersGroupBy { - BLOCK_ID - BLOCK_NUMBER - SIGNED_PROPOSALS_COUNT - SIGNED_PROPOSALS_MAP - STATUS_MAP - UN_SIGNED_PROPOSALS_COUNT - UN_SIGNED_PROPOSALS_MAP -} - -"Methods to use when ordering `ProposalCounter`." -enum ProposalCountersOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SIGNED_PROPOSALS_COUNT_ASC - SIGNED_PROPOSALS_COUNT_DESC - SIGNED_PROPOSALS_MAP_ASC - SIGNED_PROPOSALS_MAP_DESC - STATUS_MAP_ASC - STATUS_MAP_DESC - UN_SIGNED_PROPOSALS_COUNT_ASC - UN_SIGNED_PROPOSALS_COUNT_DESC - UN_SIGNED_PROPOSALS_MAP_ASC - UN_SIGNED_PROPOSALS_MAP_DESC -} - -"Grouping methods for `ProposalItem` for usage during aggregation." -enum ProposalItemsGroupBy { - BLOCK_ID - BLOCK_NUMBER - CHAIN_ID - DATA - NONCE - REMOVED - SIGNATURE - STATUS - TYPE -} - -"Methods to use when ordering `ProposalItem`." -enum ProposalItemsOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - CHAIN_ID_ASC - CHAIN_ID_DESC - DATA_ASC - DATA_DESC - ID_ASC - ID_DESC - NATURAL - NONCE_ASC - NONCE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_ID_ASC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_ID_DESC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_AVERAGE_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_COUNT_ASC - PROPOSAL_TIMELINE_STATUSES_COUNT_DESC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_ID_ASC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_ID_DESC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_DISTINCT_COUNT_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_MAX_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_MAX_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_MAX_ID_ASC - PROPOSAL_TIMELINE_STATUSES_MAX_ID_DESC - PROPOSAL_TIMELINE_STATUSES_MAX_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_MAX_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_MAX_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_MAX_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_MAX_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_MAX_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_MAX_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_MAX_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_MIN_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_MIN_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_MIN_ID_ASC - PROPOSAL_TIMELINE_STATUSES_MIN_ID_DESC - PROPOSAL_TIMELINE_STATUSES_MIN_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_MIN_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_MIN_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_MIN_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_MIN_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_MIN_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_MIN_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_MIN_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_ID_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_ID_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_POPULATION_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_ID_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_ID_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_STDDEV_SAMPLE_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_SUM_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_SUM_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_SUM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_SUM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_SUM_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_SUM_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_SUM_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_SUM_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_SUM_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_SUM_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_SUM_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_SUM_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_ID_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_ID_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_POPULATION_TX_HASH_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_ID_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_ID_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_PROPOSAL_ITEM_ID_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_PROPOSAL_ITEM_ID_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_STATUS_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_STATUS_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TIMESTAMP_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TIMESTAMP_DESC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TX_HASH_ASC - PROPOSAL_TIMELINE_STATUSES_VARIANCE_SAMPLE_TX_HASH_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_AVERAGE_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_COUNT_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_COUNT_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_DISTINCT_COUNT_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MAX_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_MIN_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_POPULATION_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_STDDEV_SAMPLE_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_SUM_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_POPULATION_VOTE_STATUS_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTER_ID_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTER_ID_DESC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTE_STATUS_ASC - PROPOSAL_VOTES_BY_PROPOSAL_ID_VARIANCE_SAMPLE_VOTE_STATUS_DESC - REMOVED_ASC - REMOVED_DESC - SIGNATURE_ASC - SIGNATURE_DESC - STATUS_ASC - STATUS_DESC - TYPE_ASC - TYPE_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_AVERAGE_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_COUNT_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_COUNT_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_DISTINCT_COUNT_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MAX_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_MIN_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_POPULATION_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_STDDEV_SAMPLE_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_SUM_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_POPULATION_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_PROPOSAL_ID_VARIANCE_SAMPLE_QUEUE_ID_DESC -} - -"Grouping methods for `ProposalTimelineStatus` for usage during aggregation." -enum ProposalTimelineStatusesGroupBy { - BLOCK_NUMBER - PROPOSAL_ITEM_ID - STATUS - TIMESTAMP - TIMESTAMP_TRUNCATED_TO_DAY - TIMESTAMP_TRUNCATED_TO_HOUR - TX_HASH -} - -"Methods to use when ordering `ProposalTimelineStatus`." -enum ProposalTimelineStatusesOrderBy { - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSAL_ITEM_ID_ASC - PROPOSAL_ITEM_ID_DESC - STATUS_ASC - STATUS_DESC - TIMESTAMP_ASC - TIMESTAMP_DESC - TX_HASH_ASC - TX_HASH_DESC -} - -"Grouping methods for `ProposalVote` for usage during aggregation." -enum ProposalVotesGroupBy { - BLOCK_ID - BLOCK_NUMBER - PROPOSAL_ID - VOTER_ID - VOTE_STATUS -} - -"Methods to use when ordering `ProposalVote`." -enum ProposalVotesOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSAL_ID_ASC - PROPOSAL_ID_DESC - VOTER_ID_ASC - VOTER_ID_DESC - VOTE_STATUS_ASC - VOTE_STATUS_DESC -} - -"Grouping methods for `ProposerThreshold` for usage during aggregation." -enum ProposerThresholdsGroupBy { - BLOCK_ID - VALUE -} - -"Methods to use when ordering `ProposerThreshold`." -enum ProposerThresholdsOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - VALUE_ASC - VALUE_DESC -} - -"Grouping methods for `Proposer` for usage during aggregation." -enum ProposersGroupBy { - ACCOUNT_ID -} - -"Methods to use when ordering `Proposer`." -enum ProposersOrderBy { - ACCOUNT_ID_ASC - ACCOUNT_ID_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SESSION_PROPOSERS_AVERAGE_ID_ASC - SESSION_PROPOSERS_AVERAGE_ID_DESC - SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_ASC - SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_DESC - SESSION_PROPOSERS_AVERAGE_SESSION_ID_ASC - SESSION_PROPOSERS_AVERAGE_SESSION_ID_DESC - SESSION_PROPOSERS_COUNT_ASC - SESSION_PROPOSERS_COUNT_DESC - SESSION_PROPOSERS_DISTINCT_COUNT_ID_ASC - SESSION_PROPOSERS_DISTINCT_COUNT_ID_DESC - SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_ASC - SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_DESC - SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_ASC - SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_DESC - SESSION_PROPOSERS_MAX_ID_ASC - SESSION_PROPOSERS_MAX_ID_DESC - SESSION_PROPOSERS_MAX_PROPOSER_ID_ASC - SESSION_PROPOSERS_MAX_PROPOSER_ID_DESC - SESSION_PROPOSERS_MAX_SESSION_ID_ASC - SESSION_PROPOSERS_MAX_SESSION_ID_DESC - SESSION_PROPOSERS_MIN_ID_ASC - SESSION_PROPOSERS_MIN_ID_DESC - SESSION_PROPOSERS_MIN_PROPOSER_ID_ASC - SESSION_PROPOSERS_MIN_PROPOSER_ID_DESC - SESSION_PROPOSERS_MIN_SESSION_ID_ASC - SESSION_PROPOSERS_MIN_SESSION_ID_DESC - SESSION_PROPOSERS_STDDEV_POPULATION_ID_ASC - SESSION_PROPOSERS_STDDEV_POPULATION_ID_DESC - SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_ASC - SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_DESC - SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_ASC - SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_DESC - SESSION_PROPOSERS_STDDEV_SAMPLE_ID_ASC - SESSION_PROPOSERS_STDDEV_SAMPLE_ID_DESC - SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_ASC - SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_DESC - SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_ASC - SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_DESC - SESSION_PROPOSERS_SUM_ID_ASC - SESSION_PROPOSERS_SUM_ID_DESC - SESSION_PROPOSERS_SUM_PROPOSER_ID_ASC - SESSION_PROPOSERS_SUM_PROPOSER_ID_DESC - SESSION_PROPOSERS_SUM_SESSION_ID_ASC - SESSION_PROPOSERS_SUM_SESSION_ID_DESC - SESSION_PROPOSERS_VARIANCE_POPULATION_ID_ASC - SESSION_PROPOSERS_VARIANCE_POPULATION_ID_DESC - SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_ASC - SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_DESC - SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_ASC - SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_DESC - SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_ASC - SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_DESC - SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_ASC - SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_DESC - SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_ASC - SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_DESC - VOTES_AVERAGE_BLOCK_ID_ASC - VOTES_AVERAGE_BLOCK_ID_DESC - VOTES_AVERAGE_BLOCK_NUMBER_ASC - VOTES_AVERAGE_BLOCK_NUMBER_DESC - VOTES_AVERAGE_ID_ASC - VOTES_AVERAGE_ID_DESC - VOTES_AVERAGE_PROPOSAL_ID_ASC - VOTES_AVERAGE_PROPOSAL_ID_DESC - VOTES_AVERAGE_VOTER_ID_ASC - VOTES_AVERAGE_VOTER_ID_DESC - VOTES_AVERAGE_VOTE_STATUS_ASC - VOTES_AVERAGE_VOTE_STATUS_DESC - VOTES_COUNT_ASC - VOTES_COUNT_DESC - VOTES_DISTINCT_COUNT_BLOCK_ID_ASC - VOTES_DISTINCT_COUNT_BLOCK_ID_DESC - VOTES_DISTINCT_COUNT_BLOCK_NUMBER_ASC - VOTES_DISTINCT_COUNT_BLOCK_NUMBER_DESC - VOTES_DISTINCT_COUNT_ID_ASC - VOTES_DISTINCT_COUNT_ID_DESC - VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC - VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC - VOTES_DISTINCT_COUNT_VOTER_ID_ASC - VOTES_DISTINCT_COUNT_VOTER_ID_DESC - VOTES_DISTINCT_COUNT_VOTE_STATUS_ASC - VOTES_DISTINCT_COUNT_VOTE_STATUS_DESC - VOTES_MAX_BLOCK_ID_ASC - VOTES_MAX_BLOCK_ID_DESC - VOTES_MAX_BLOCK_NUMBER_ASC - VOTES_MAX_BLOCK_NUMBER_DESC - VOTES_MAX_ID_ASC - VOTES_MAX_ID_DESC - VOTES_MAX_PROPOSAL_ID_ASC - VOTES_MAX_PROPOSAL_ID_DESC - VOTES_MAX_VOTER_ID_ASC - VOTES_MAX_VOTER_ID_DESC - VOTES_MAX_VOTE_STATUS_ASC - VOTES_MAX_VOTE_STATUS_DESC - VOTES_MIN_BLOCK_ID_ASC - VOTES_MIN_BLOCK_ID_DESC - VOTES_MIN_BLOCK_NUMBER_ASC - VOTES_MIN_BLOCK_NUMBER_DESC - VOTES_MIN_ID_ASC - VOTES_MIN_ID_DESC - VOTES_MIN_PROPOSAL_ID_ASC - VOTES_MIN_PROPOSAL_ID_DESC - VOTES_MIN_VOTER_ID_ASC - VOTES_MIN_VOTER_ID_DESC - VOTES_MIN_VOTE_STATUS_ASC - VOTES_MIN_VOTE_STATUS_DESC - VOTES_STDDEV_POPULATION_BLOCK_ID_ASC - VOTES_STDDEV_POPULATION_BLOCK_ID_DESC - VOTES_STDDEV_POPULATION_BLOCK_NUMBER_ASC - VOTES_STDDEV_POPULATION_BLOCK_NUMBER_DESC - VOTES_STDDEV_POPULATION_ID_ASC - VOTES_STDDEV_POPULATION_ID_DESC - VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC - VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC - VOTES_STDDEV_POPULATION_VOTER_ID_ASC - VOTES_STDDEV_POPULATION_VOTER_ID_DESC - VOTES_STDDEV_POPULATION_VOTE_STATUS_ASC - VOTES_STDDEV_POPULATION_VOTE_STATUS_DESC - VOTES_STDDEV_SAMPLE_BLOCK_ID_ASC - VOTES_STDDEV_SAMPLE_BLOCK_ID_DESC - VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - VOTES_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - VOTES_STDDEV_SAMPLE_ID_ASC - VOTES_STDDEV_SAMPLE_ID_DESC - VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC - VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC - VOTES_STDDEV_SAMPLE_VOTER_ID_ASC - VOTES_STDDEV_SAMPLE_VOTER_ID_DESC - VOTES_STDDEV_SAMPLE_VOTE_STATUS_ASC - VOTES_STDDEV_SAMPLE_VOTE_STATUS_DESC - VOTES_SUM_BLOCK_ID_ASC - VOTES_SUM_BLOCK_ID_DESC - VOTES_SUM_BLOCK_NUMBER_ASC - VOTES_SUM_BLOCK_NUMBER_DESC - VOTES_SUM_ID_ASC - VOTES_SUM_ID_DESC - VOTES_SUM_PROPOSAL_ID_ASC - VOTES_SUM_PROPOSAL_ID_DESC - VOTES_SUM_VOTER_ID_ASC - VOTES_SUM_VOTER_ID_DESC - VOTES_SUM_VOTE_STATUS_ASC - VOTES_SUM_VOTE_STATUS_DESC - VOTES_VARIANCE_POPULATION_BLOCK_ID_ASC - VOTES_VARIANCE_POPULATION_BLOCK_ID_DESC - VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - VOTES_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - VOTES_VARIANCE_POPULATION_ID_ASC - VOTES_VARIANCE_POPULATION_ID_DESC - VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC - VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC - VOTES_VARIANCE_POPULATION_VOTER_ID_ASC - VOTES_VARIANCE_POPULATION_VOTER_ID_DESC - VOTES_VARIANCE_POPULATION_VOTE_STATUS_ASC - VOTES_VARIANCE_POPULATION_VOTE_STATUS_DESC - VOTES_VARIANCE_SAMPLE_BLOCK_ID_ASC - VOTES_VARIANCE_SAMPLE_BLOCK_ID_DESC - VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - VOTES_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - VOTES_VARIANCE_SAMPLE_ID_ASC - VOTES_VARIANCE_SAMPLE_ID_DESC - VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC - VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC - VOTES_VARIANCE_SAMPLE_VOTER_ID_ASC - VOTES_VARIANCE_SAMPLE_VOTER_ID_DESC - VOTES_VARIANCE_SAMPLE_VOTE_STATUS_ASC - VOTES_VARIANCE_SAMPLE_VOTE_STATUS_DESC -} - -"Grouping methods for `PublicKey` for usage during aggregation." -enum PublicKeysGroupBy { - BLOCK_ID - COMPRESSED - HISTORY -} - -"Methods to use when ordering `PublicKey`." -enum PublicKeysOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - COMPRESSED_ASC - COMPRESSED_DESC - HISTORY_ASC - HISTORY_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SESSIONS_AVERAGE_BLOCK_ID_ASC - SESSIONS_AVERAGE_BLOCK_ID_DESC - SESSIONS_AVERAGE_BLOCK_NUMBER_ASC - SESSIONS_AVERAGE_BLOCK_NUMBER_DESC - SESSIONS_AVERAGE_ID_ASC - SESSIONS_AVERAGE_ID_DESC - SESSIONS_AVERAGE_PUBLIC_KEY_ID_ASC - SESSIONS_AVERAGE_PUBLIC_KEY_ID_DESC - SESSIONS_COUNT_ASC - SESSIONS_COUNT_DESC - SESSIONS_DISTINCT_COUNT_BLOCK_ID_ASC - SESSIONS_DISTINCT_COUNT_BLOCK_ID_DESC - SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - SESSIONS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - SESSIONS_DISTINCT_COUNT_ID_ASC - SESSIONS_DISTINCT_COUNT_ID_DESC - SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_ASC - SESSIONS_DISTINCT_COUNT_PUBLIC_KEY_ID_DESC - SESSIONS_MAX_BLOCK_ID_ASC - SESSIONS_MAX_BLOCK_ID_DESC - SESSIONS_MAX_BLOCK_NUMBER_ASC - SESSIONS_MAX_BLOCK_NUMBER_DESC - SESSIONS_MAX_ID_ASC - SESSIONS_MAX_ID_DESC - SESSIONS_MAX_PUBLIC_KEY_ID_ASC - SESSIONS_MAX_PUBLIC_KEY_ID_DESC - SESSIONS_MIN_BLOCK_ID_ASC - SESSIONS_MIN_BLOCK_ID_DESC - SESSIONS_MIN_BLOCK_NUMBER_ASC - SESSIONS_MIN_BLOCK_NUMBER_DESC - SESSIONS_MIN_ID_ASC - SESSIONS_MIN_ID_DESC - SESSIONS_MIN_PUBLIC_KEY_ID_ASC - SESSIONS_MIN_PUBLIC_KEY_ID_DESC - SESSIONS_STDDEV_POPULATION_BLOCK_ID_ASC - SESSIONS_STDDEV_POPULATION_BLOCK_ID_DESC - SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - SESSIONS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - SESSIONS_STDDEV_POPULATION_ID_ASC - SESSIONS_STDDEV_POPULATION_ID_DESC - SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_ASC - SESSIONS_STDDEV_POPULATION_PUBLIC_KEY_ID_DESC - SESSIONS_STDDEV_SAMPLE_BLOCK_ID_ASC - SESSIONS_STDDEV_SAMPLE_BLOCK_ID_DESC - SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - SESSIONS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - SESSIONS_STDDEV_SAMPLE_ID_ASC - SESSIONS_STDDEV_SAMPLE_ID_DESC - SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_ASC - SESSIONS_STDDEV_SAMPLE_PUBLIC_KEY_ID_DESC - SESSIONS_SUM_BLOCK_ID_ASC - SESSIONS_SUM_BLOCK_ID_DESC - SESSIONS_SUM_BLOCK_NUMBER_ASC - SESSIONS_SUM_BLOCK_NUMBER_DESC - SESSIONS_SUM_ID_ASC - SESSIONS_SUM_ID_DESC - SESSIONS_SUM_PUBLIC_KEY_ID_ASC - SESSIONS_SUM_PUBLIC_KEY_ID_DESC - SESSIONS_VARIANCE_POPULATION_BLOCK_ID_ASC - SESSIONS_VARIANCE_POPULATION_BLOCK_ID_DESC - SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - SESSIONS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - SESSIONS_VARIANCE_POPULATION_ID_ASC - SESSIONS_VARIANCE_POPULATION_ID_DESC - SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_ASC - SESSIONS_VARIANCE_POPULATION_PUBLIC_KEY_ID_DESC - SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_ASC - SESSIONS_VARIANCE_SAMPLE_BLOCK_ID_DESC - SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - SESSIONS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - SESSIONS_VARIANCE_SAMPLE_ID_ASC - SESSIONS_VARIANCE_SAMPLE_ID_DESC - SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_ASC - SESSIONS_VARIANCE_SAMPLE_PUBLIC_KEY_ID_DESC - UNCOMPRESSED_ASC - UNCOMPRESSED_DESC -} - -"Grouping methods for `SessionProposer` for usage during aggregation." -enum SessionProposersGroupBy { - PROPOSER_ID - SESSION_ID -} - -"Methods to use when ordering `SessionProposer`." -enum SessionProposersOrderBy { - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSER_ID_ASC - PROPOSER_ID_DESC - SESSION_ID_ASC - SESSION_ID_DESC -} - -"Grouping methods for `SessionValidator` for usage during aggregation." -enum SessionValidatorsGroupBy { - BEST_ORDER - BLOCK_NUMBER - IS_BEST - IS_NEXT - IS_NEXT_BEST - NEXT_BEST_ORDER - REPUTATION - SESSION_ID - UPTIME - VALIDATOR_ID -} - -"Methods to use when ordering `SessionValidator`." -enum SessionValidatorsOrderBy { - BEST_ORDER_ASC - BEST_ORDER_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - IS_BEST_ASC - IS_BEST_DESC - IS_NEXT_ASC - IS_NEXT_BEST_ASC - IS_NEXT_BEST_DESC - IS_NEXT_DESC - NATURAL - NEXT_BEST_ORDER_ASC - NEXT_BEST_ORDER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - REPUTATION_ASC - REPUTATION_DESC - SESSION_ID_ASC - SESSION_ID_DESC - UPTIME_ASC - UPTIME_DESC - VALIDATOR_ID_ASC - VALIDATOR_ID_DESC -} - -"Grouping methods for `Session` for usage during aggregation." -enum SessionsGroupBy { - BLOCK_ID - BLOCK_NUMBER - PUBLIC_KEY_ID -} - -"Methods to use when ordering `Session`." -enum SessionsOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - HEART_BEATS_AVERAGE_ACCOUNT_ID_ASC - HEART_BEATS_AVERAGE_ACCOUNT_ID_DESC - HEART_BEATS_AVERAGE_BLOCK_NUMBER_ASC - HEART_BEATS_AVERAGE_BLOCK_NUMBER_DESC - HEART_BEATS_AVERAGE_ID_ASC - HEART_BEATS_AVERAGE_ID_DESC - HEART_BEATS_AVERAGE_SESSION_ID_ASC - HEART_BEATS_AVERAGE_SESSION_ID_DESC - HEART_BEATS_COUNT_ASC - HEART_BEATS_COUNT_DESC - HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_ASC - HEART_BEATS_DISTINCT_COUNT_ACCOUNT_ID_DESC - HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - HEART_BEATS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - HEART_BEATS_DISTINCT_COUNT_ID_ASC - HEART_BEATS_DISTINCT_COUNT_ID_DESC - HEART_BEATS_DISTINCT_COUNT_SESSION_ID_ASC - HEART_BEATS_DISTINCT_COUNT_SESSION_ID_DESC - HEART_BEATS_MAX_ACCOUNT_ID_ASC - HEART_BEATS_MAX_ACCOUNT_ID_DESC - HEART_BEATS_MAX_BLOCK_NUMBER_ASC - HEART_BEATS_MAX_BLOCK_NUMBER_DESC - HEART_BEATS_MAX_ID_ASC - HEART_BEATS_MAX_ID_DESC - HEART_BEATS_MAX_SESSION_ID_ASC - HEART_BEATS_MAX_SESSION_ID_DESC - HEART_BEATS_MIN_ACCOUNT_ID_ASC - HEART_BEATS_MIN_ACCOUNT_ID_DESC - HEART_BEATS_MIN_BLOCK_NUMBER_ASC - HEART_BEATS_MIN_BLOCK_NUMBER_DESC - HEART_BEATS_MIN_ID_ASC - HEART_BEATS_MIN_ID_DESC - HEART_BEATS_MIN_SESSION_ID_ASC - HEART_BEATS_MIN_SESSION_ID_DESC - HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_ASC - HEART_BEATS_STDDEV_POPULATION_ACCOUNT_ID_DESC - HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - HEART_BEATS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - HEART_BEATS_STDDEV_POPULATION_ID_ASC - HEART_BEATS_STDDEV_POPULATION_ID_DESC - HEART_BEATS_STDDEV_POPULATION_SESSION_ID_ASC - HEART_BEATS_STDDEV_POPULATION_SESSION_ID_DESC - HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_ASC - HEART_BEATS_STDDEV_SAMPLE_ACCOUNT_ID_DESC - HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - HEART_BEATS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - HEART_BEATS_STDDEV_SAMPLE_ID_ASC - HEART_BEATS_STDDEV_SAMPLE_ID_DESC - HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_ASC - HEART_BEATS_STDDEV_SAMPLE_SESSION_ID_DESC - HEART_BEATS_SUM_ACCOUNT_ID_ASC - HEART_BEATS_SUM_ACCOUNT_ID_DESC - HEART_BEATS_SUM_BLOCK_NUMBER_ASC - HEART_BEATS_SUM_BLOCK_NUMBER_DESC - HEART_BEATS_SUM_ID_ASC - HEART_BEATS_SUM_ID_DESC - HEART_BEATS_SUM_SESSION_ID_ASC - HEART_BEATS_SUM_SESSION_ID_DESC - HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_ASC - HEART_BEATS_VARIANCE_POPULATION_ACCOUNT_ID_DESC - HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - HEART_BEATS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - HEART_BEATS_VARIANCE_POPULATION_ID_ASC - HEART_BEATS_VARIANCE_POPULATION_ID_DESC - HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_ASC - HEART_BEATS_VARIANCE_POPULATION_SESSION_ID_DESC - HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC - HEART_BEATS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC - HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - HEART_BEATS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - HEART_BEATS_VARIANCE_SAMPLE_ID_ASC - HEART_BEATS_VARIANCE_SAMPLE_ID_DESC - HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_ASC - HEART_BEATS_VARIANCE_SAMPLE_SESSION_ID_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PUBLIC_KEY_ID_ASC - PUBLIC_KEY_ID_DESC - SESSION_PROPOSERS_AVERAGE_ID_ASC - SESSION_PROPOSERS_AVERAGE_ID_DESC - SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_ASC - SESSION_PROPOSERS_AVERAGE_PROPOSER_ID_DESC - SESSION_PROPOSERS_AVERAGE_SESSION_ID_ASC - SESSION_PROPOSERS_AVERAGE_SESSION_ID_DESC - SESSION_PROPOSERS_COUNT_ASC - SESSION_PROPOSERS_COUNT_DESC - SESSION_PROPOSERS_DISTINCT_COUNT_ID_ASC - SESSION_PROPOSERS_DISTINCT_COUNT_ID_DESC - SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_ASC - SESSION_PROPOSERS_DISTINCT_COUNT_PROPOSER_ID_DESC - SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_ASC - SESSION_PROPOSERS_DISTINCT_COUNT_SESSION_ID_DESC - SESSION_PROPOSERS_MAX_ID_ASC - SESSION_PROPOSERS_MAX_ID_DESC - SESSION_PROPOSERS_MAX_PROPOSER_ID_ASC - SESSION_PROPOSERS_MAX_PROPOSER_ID_DESC - SESSION_PROPOSERS_MAX_SESSION_ID_ASC - SESSION_PROPOSERS_MAX_SESSION_ID_DESC - SESSION_PROPOSERS_MIN_ID_ASC - SESSION_PROPOSERS_MIN_ID_DESC - SESSION_PROPOSERS_MIN_PROPOSER_ID_ASC - SESSION_PROPOSERS_MIN_PROPOSER_ID_DESC - SESSION_PROPOSERS_MIN_SESSION_ID_ASC - SESSION_PROPOSERS_MIN_SESSION_ID_DESC - SESSION_PROPOSERS_STDDEV_POPULATION_ID_ASC - SESSION_PROPOSERS_STDDEV_POPULATION_ID_DESC - SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_ASC - SESSION_PROPOSERS_STDDEV_POPULATION_PROPOSER_ID_DESC - SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_ASC - SESSION_PROPOSERS_STDDEV_POPULATION_SESSION_ID_DESC - SESSION_PROPOSERS_STDDEV_SAMPLE_ID_ASC - SESSION_PROPOSERS_STDDEV_SAMPLE_ID_DESC - SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_ASC - SESSION_PROPOSERS_STDDEV_SAMPLE_PROPOSER_ID_DESC - SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_ASC - SESSION_PROPOSERS_STDDEV_SAMPLE_SESSION_ID_DESC - SESSION_PROPOSERS_SUM_ID_ASC - SESSION_PROPOSERS_SUM_ID_DESC - SESSION_PROPOSERS_SUM_PROPOSER_ID_ASC - SESSION_PROPOSERS_SUM_PROPOSER_ID_DESC - SESSION_PROPOSERS_SUM_SESSION_ID_ASC - SESSION_PROPOSERS_SUM_SESSION_ID_DESC - SESSION_PROPOSERS_VARIANCE_POPULATION_ID_ASC - SESSION_PROPOSERS_VARIANCE_POPULATION_ID_DESC - SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_ASC - SESSION_PROPOSERS_VARIANCE_POPULATION_PROPOSER_ID_DESC - SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_ASC - SESSION_PROPOSERS_VARIANCE_POPULATION_SESSION_ID_DESC - SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_ASC - SESSION_PROPOSERS_VARIANCE_SAMPLE_ID_DESC - SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_ASC - SESSION_PROPOSERS_VARIANCE_SAMPLE_PROPOSER_ID_DESC - SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_ASC - SESSION_PROPOSERS_VARIANCE_SAMPLE_SESSION_ID_DESC - SESSION_VALIDATORS_AVERAGE_BEST_ORDER_ASC - SESSION_VALIDATORS_AVERAGE_BEST_ORDER_DESC - SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_AVERAGE_ID_ASC - SESSION_VALIDATORS_AVERAGE_ID_DESC - SESSION_VALIDATORS_AVERAGE_IS_BEST_ASC - SESSION_VALIDATORS_AVERAGE_IS_BEST_DESC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_ASC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_DESC - SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_AVERAGE_REPUTATION_ASC - SESSION_VALIDATORS_AVERAGE_REPUTATION_DESC - SESSION_VALIDATORS_AVERAGE_SESSION_ID_ASC - SESSION_VALIDATORS_AVERAGE_SESSION_ID_DESC - SESSION_VALIDATORS_AVERAGE_UPTIME_ASC - SESSION_VALIDATORS_AVERAGE_UPTIME_DESC - SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_ASC - SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_DESC - SESSION_VALIDATORS_COUNT_ASC - SESSION_VALIDATORS_COUNT_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_ID_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_ID_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_DESC - SESSION_VALIDATORS_MAX_BEST_ORDER_ASC - SESSION_VALIDATORS_MAX_BEST_ORDER_DESC - SESSION_VALIDATORS_MAX_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_MAX_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_MAX_ID_ASC - SESSION_VALIDATORS_MAX_ID_DESC - SESSION_VALIDATORS_MAX_IS_BEST_ASC - SESSION_VALIDATORS_MAX_IS_BEST_DESC - SESSION_VALIDATORS_MAX_IS_NEXT_ASC - SESSION_VALIDATORS_MAX_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_MAX_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_MAX_IS_NEXT_DESC - SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_MAX_REPUTATION_ASC - SESSION_VALIDATORS_MAX_REPUTATION_DESC - SESSION_VALIDATORS_MAX_SESSION_ID_ASC - SESSION_VALIDATORS_MAX_SESSION_ID_DESC - SESSION_VALIDATORS_MAX_UPTIME_ASC - SESSION_VALIDATORS_MAX_UPTIME_DESC - SESSION_VALIDATORS_MAX_VALIDATOR_ID_ASC - SESSION_VALIDATORS_MAX_VALIDATOR_ID_DESC - SESSION_VALIDATORS_MIN_BEST_ORDER_ASC - SESSION_VALIDATORS_MIN_BEST_ORDER_DESC - SESSION_VALIDATORS_MIN_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_MIN_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_MIN_ID_ASC - SESSION_VALIDATORS_MIN_ID_DESC - SESSION_VALIDATORS_MIN_IS_BEST_ASC - SESSION_VALIDATORS_MIN_IS_BEST_DESC - SESSION_VALIDATORS_MIN_IS_NEXT_ASC - SESSION_VALIDATORS_MIN_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_MIN_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_MIN_IS_NEXT_DESC - SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_MIN_REPUTATION_ASC - SESSION_VALIDATORS_MIN_REPUTATION_DESC - SESSION_VALIDATORS_MIN_SESSION_ID_ASC - SESSION_VALIDATORS_MIN_SESSION_ID_DESC - SESSION_VALIDATORS_MIN_UPTIME_ASC - SESSION_VALIDATORS_MIN_UPTIME_DESC - SESSION_VALIDATORS_MIN_VALIDATOR_ID_ASC - SESSION_VALIDATORS_MIN_VALIDATOR_ID_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_ID_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_ID_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_ID_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_ID_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_DESC - SESSION_VALIDATORS_SUM_BEST_ORDER_ASC - SESSION_VALIDATORS_SUM_BEST_ORDER_DESC - SESSION_VALIDATORS_SUM_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_SUM_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_SUM_ID_ASC - SESSION_VALIDATORS_SUM_ID_DESC - SESSION_VALIDATORS_SUM_IS_BEST_ASC - SESSION_VALIDATORS_SUM_IS_BEST_DESC - SESSION_VALIDATORS_SUM_IS_NEXT_ASC - SESSION_VALIDATORS_SUM_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_SUM_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_SUM_IS_NEXT_DESC - SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_SUM_REPUTATION_ASC - SESSION_VALIDATORS_SUM_REPUTATION_DESC - SESSION_VALIDATORS_SUM_SESSION_ID_ASC - SESSION_VALIDATORS_SUM_SESSION_ID_DESC - SESSION_VALIDATORS_SUM_UPTIME_ASC - SESSION_VALIDATORS_SUM_UPTIME_DESC - SESSION_VALIDATORS_SUM_VALIDATOR_ID_ASC - SESSION_VALIDATORS_SUM_VALIDATOR_ID_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_ID_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_ID_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_DESC - THRESHOLDS_AVERAGE_CURRENT_ASC - THRESHOLDS_AVERAGE_CURRENT_DESC - THRESHOLDS_AVERAGE_ID_ASC - THRESHOLDS_AVERAGE_ID_DESC - THRESHOLDS_AVERAGE_NEXT_ASC - THRESHOLDS_AVERAGE_NEXT_DESC - THRESHOLDS_AVERAGE_PENDING_ASC - THRESHOLDS_AVERAGE_PENDING_DESC - THRESHOLDS_AVERAGE_SESSION_ID_ASC - THRESHOLDS_AVERAGE_SESSION_ID_DESC - THRESHOLDS_AVERAGE_VARIANT_ASC - THRESHOLDS_AVERAGE_VARIANT_DESC - THRESHOLDS_COUNT_ASC - THRESHOLDS_COUNT_DESC - THRESHOLDS_DISTINCT_COUNT_CURRENT_ASC - THRESHOLDS_DISTINCT_COUNT_CURRENT_DESC - THRESHOLDS_DISTINCT_COUNT_ID_ASC - THRESHOLDS_DISTINCT_COUNT_ID_DESC - THRESHOLDS_DISTINCT_COUNT_NEXT_ASC - THRESHOLDS_DISTINCT_COUNT_NEXT_DESC - THRESHOLDS_DISTINCT_COUNT_PENDING_ASC - THRESHOLDS_DISTINCT_COUNT_PENDING_DESC - THRESHOLDS_DISTINCT_COUNT_SESSION_ID_ASC - THRESHOLDS_DISTINCT_COUNT_SESSION_ID_DESC - THRESHOLDS_DISTINCT_COUNT_VARIANT_ASC - THRESHOLDS_DISTINCT_COUNT_VARIANT_DESC - THRESHOLDS_MAX_CURRENT_ASC - THRESHOLDS_MAX_CURRENT_DESC - THRESHOLDS_MAX_ID_ASC - THRESHOLDS_MAX_ID_DESC - THRESHOLDS_MAX_NEXT_ASC - THRESHOLDS_MAX_NEXT_DESC - THRESHOLDS_MAX_PENDING_ASC - THRESHOLDS_MAX_PENDING_DESC - THRESHOLDS_MAX_SESSION_ID_ASC - THRESHOLDS_MAX_SESSION_ID_DESC - THRESHOLDS_MAX_VARIANT_ASC - THRESHOLDS_MAX_VARIANT_DESC - THRESHOLDS_MIN_CURRENT_ASC - THRESHOLDS_MIN_CURRENT_DESC - THRESHOLDS_MIN_ID_ASC - THRESHOLDS_MIN_ID_DESC - THRESHOLDS_MIN_NEXT_ASC - THRESHOLDS_MIN_NEXT_DESC - THRESHOLDS_MIN_PENDING_ASC - THRESHOLDS_MIN_PENDING_DESC - THRESHOLDS_MIN_SESSION_ID_ASC - THRESHOLDS_MIN_SESSION_ID_DESC - THRESHOLDS_MIN_VARIANT_ASC - THRESHOLDS_MIN_VARIANT_DESC - THRESHOLDS_STDDEV_POPULATION_CURRENT_ASC - THRESHOLDS_STDDEV_POPULATION_CURRENT_DESC - THRESHOLDS_STDDEV_POPULATION_ID_ASC - THRESHOLDS_STDDEV_POPULATION_ID_DESC - THRESHOLDS_STDDEV_POPULATION_NEXT_ASC - THRESHOLDS_STDDEV_POPULATION_NEXT_DESC - THRESHOLDS_STDDEV_POPULATION_PENDING_ASC - THRESHOLDS_STDDEV_POPULATION_PENDING_DESC - THRESHOLDS_STDDEV_POPULATION_SESSION_ID_ASC - THRESHOLDS_STDDEV_POPULATION_SESSION_ID_DESC - THRESHOLDS_STDDEV_POPULATION_VARIANT_ASC - THRESHOLDS_STDDEV_POPULATION_VARIANT_DESC - THRESHOLDS_STDDEV_SAMPLE_CURRENT_ASC - THRESHOLDS_STDDEV_SAMPLE_CURRENT_DESC - THRESHOLDS_STDDEV_SAMPLE_ID_ASC - THRESHOLDS_STDDEV_SAMPLE_ID_DESC - THRESHOLDS_STDDEV_SAMPLE_NEXT_ASC - THRESHOLDS_STDDEV_SAMPLE_NEXT_DESC - THRESHOLDS_STDDEV_SAMPLE_PENDING_ASC - THRESHOLDS_STDDEV_SAMPLE_PENDING_DESC - THRESHOLDS_STDDEV_SAMPLE_SESSION_ID_ASC - THRESHOLDS_STDDEV_SAMPLE_SESSION_ID_DESC - THRESHOLDS_STDDEV_SAMPLE_VARIANT_ASC - THRESHOLDS_STDDEV_SAMPLE_VARIANT_DESC - THRESHOLDS_SUM_CURRENT_ASC - THRESHOLDS_SUM_CURRENT_DESC - THRESHOLDS_SUM_ID_ASC - THRESHOLDS_SUM_ID_DESC - THRESHOLDS_SUM_NEXT_ASC - THRESHOLDS_SUM_NEXT_DESC - THRESHOLDS_SUM_PENDING_ASC - THRESHOLDS_SUM_PENDING_DESC - THRESHOLDS_SUM_SESSION_ID_ASC - THRESHOLDS_SUM_SESSION_ID_DESC - THRESHOLDS_SUM_VARIANT_ASC - THRESHOLDS_SUM_VARIANT_DESC - THRESHOLDS_VARIANCE_POPULATION_CURRENT_ASC - THRESHOLDS_VARIANCE_POPULATION_CURRENT_DESC - THRESHOLDS_VARIANCE_POPULATION_ID_ASC - THRESHOLDS_VARIANCE_POPULATION_ID_DESC - THRESHOLDS_VARIANCE_POPULATION_NEXT_ASC - THRESHOLDS_VARIANCE_POPULATION_NEXT_DESC - THRESHOLDS_VARIANCE_POPULATION_PENDING_ASC - THRESHOLDS_VARIANCE_POPULATION_PENDING_DESC - THRESHOLDS_VARIANCE_POPULATION_SESSION_ID_ASC - THRESHOLDS_VARIANCE_POPULATION_SESSION_ID_DESC - THRESHOLDS_VARIANCE_POPULATION_VARIANT_ASC - THRESHOLDS_VARIANCE_POPULATION_VARIANT_DESC - THRESHOLDS_VARIANCE_SAMPLE_CURRENT_ASC - THRESHOLDS_VARIANCE_SAMPLE_CURRENT_DESC - THRESHOLDS_VARIANCE_SAMPLE_ID_ASC - THRESHOLDS_VARIANCE_SAMPLE_ID_DESC - THRESHOLDS_VARIANCE_SAMPLE_NEXT_ASC - THRESHOLDS_VARIANCE_SAMPLE_NEXT_DESC - THRESHOLDS_VARIANCE_SAMPLE_PENDING_ASC - THRESHOLDS_VARIANCE_SAMPLE_PENDING_DESC - THRESHOLDS_VARIANCE_SAMPLE_SESSION_ID_ASC - THRESHOLDS_VARIANCE_SAMPLE_SESSION_ID_DESC - THRESHOLDS_VARIANCE_SAMPLE_VARIANT_ASC - THRESHOLDS_VARIANCE_SAMPLE_VARIANT_DESC -} - -"Grouping methods for `SignatureThreshold` for usage during aggregation." -enum SignatureThresholdsGroupBy { - BLOCK_ID - CURRENT - NEXT - PENDING -} - -"Methods to use when ordering `SignatureThreshold`." -enum SignatureThresholdsOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - CURRENT_ASC - CURRENT_DESC - ID_ASC - ID_DESC - NATURAL - NEXT_ASC - NEXT_DESC - PENDING_ASC - PENDING_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -"Grouping methods for `Threshold` for usage during aggregation." -enum ThresholdsGroupBy { - CURRENT - NEXT - PENDING - SESSION_ID - VARIANT -} - -"Methods to use when ordering `Threshold`." -enum ThresholdsOrderBy { - CURRENT_ASC - CURRENT_DESC - ID_ASC - ID_DESC - NATURAL - NEXT_ASC - NEXT_DESC - PENDING_ASC - PENDING_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SESSION_ID_ASC - SESSION_ID_DESC - VARIANT_ASC - VARIANT_DESC -} - -"Grouping methods for `UnsignedProposalsQueueItem` for usage during aggregation." -enum UnsignedProposalsQueueItemsGroupBy { - BLOCK_NUMBER - PROPOSAL_ID - QUEUE_ID -} - -"Methods to use when ordering `UnsignedProposalsQueueItem`." -enum UnsignedProposalsQueueItemsOrderBy { - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - PROPOSAL_ID_ASC - PROPOSAL_ID_DESC - QUEUE_ID_ASC - QUEUE_ID_DESC -} - -"Grouping methods for `UnsignedProposalsQueue` for usage during aggregation." -enum UnsignedProposalsQueuesGroupBy { - BLOCK_ID - BLOCK_NUMBER -} - -"Methods to use when ordering `UnsignedProposalsQueue`." -enum UnsignedProposalsQueuesOrderBy { - BLOCK_ID_ASC - BLOCK_ID_DESC - BLOCK_NUMBER_ASC - BLOCK_NUMBER_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_AVERAGE_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_COUNT_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_COUNT_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_DISTINCT_COUNT_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MAX_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_MIN_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_POPULATION_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_STDDEV_SAMPLE_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_SUM_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_POPULATION_QUEUE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_QUEUE_ID_ASC - UNSIGNED_PROPOSALS_QUEUE_ITEMS_BY_QUEUE_ID_VARIANCE_SAMPLE_QUEUE_ID_DESC -} - -"Grouping methods for `Validator` for usage during aggregation." -enum ValidatorsGroupBy { - ACCOUNT_ID -} - -"Methods to use when ordering `Validator`." -enum ValidatorsOrderBy { - ACCOUNT_ID_ASC - ACCOUNT_ID_DESC - AUTHORITY_ID_ASC - AUTHORITY_ID_DESC - ID_ASC - ID_DESC - NATURAL - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC - SESSION_VALIDATORS_AVERAGE_BEST_ORDER_ASC - SESSION_VALIDATORS_AVERAGE_BEST_ORDER_DESC - SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_AVERAGE_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_AVERAGE_ID_ASC - SESSION_VALIDATORS_AVERAGE_ID_DESC - SESSION_VALIDATORS_AVERAGE_IS_BEST_ASC - SESSION_VALIDATORS_AVERAGE_IS_BEST_DESC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_ASC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_AVERAGE_IS_NEXT_DESC - SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_AVERAGE_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_AVERAGE_REPUTATION_ASC - SESSION_VALIDATORS_AVERAGE_REPUTATION_DESC - SESSION_VALIDATORS_AVERAGE_SESSION_ID_ASC - SESSION_VALIDATORS_AVERAGE_SESSION_ID_DESC - SESSION_VALIDATORS_AVERAGE_UPTIME_ASC - SESSION_VALIDATORS_AVERAGE_UPTIME_DESC - SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_ASC - SESSION_VALIDATORS_AVERAGE_VALIDATOR_ID_DESC - SESSION_VALIDATORS_COUNT_ASC - SESSION_VALIDATORS_COUNT_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_BEST_ORDER_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_ID_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_ID_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_BEST_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_IS_NEXT_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_REPUTATION_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_SESSION_ID_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_UPTIME_DESC - SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_ASC - SESSION_VALIDATORS_DISTINCT_COUNT_VALIDATOR_ID_DESC - SESSION_VALIDATORS_MAX_BEST_ORDER_ASC - SESSION_VALIDATORS_MAX_BEST_ORDER_DESC - SESSION_VALIDATORS_MAX_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_MAX_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_MAX_ID_ASC - SESSION_VALIDATORS_MAX_ID_DESC - SESSION_VALIDATORS_MAX_IS_BEST_ASC - SESSION_VALIDATORS_MAX_IS_BEST_DESC - SESSION_VALIDATORS_MAX_IS_NEXT_ASC - SESSION_VALIDATORS_MAX_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_MAX_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_MAX_IS_NEXT_DESC - SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_MAX_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_MAX_REPUTATION_ASC - SESSION_VALIDATORS_MAX_REPUTATION_DESC - SESSION_VALIDATORS_MAX_SESSION_ID_ASC - SESSION_VALIDATORS_MAX_SESSION_ID_DESC - SESSION_VALIDATORS_MAX_UPTIME_ASC - SESSION_VALIDATORS_MAX_UPTIME_DESC - SESSION_VALIDATORS_MAX_VALIDATOR_ID_ASC - SESSION_VALIDATORS_MAX_VALIDATOR_ID_DESC - SESSION_VALIDATORS_MIN_BEST_ORDER_ASC - SESSION_VALIDATORS_MIN_BEST_ORDER_DESC - SESSION_VALIDATORS_MIN_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_MIN_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_MIN_ID_ASC - SESSION_VALIDATORS_MIN_ID_DESC - SESSION_VALIDATORS_MIN_IS_BEST_ASC - SESSION_VALIDATORS_MIN_IS_BEST_DESC - SESSION_VALIDATORS_MIN_IS_NEXT_ASC - SESSION_VALIDATORS_MIN_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_MIN_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_MIN_IS_NEXT_DESC - SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_MIN_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_MIN_REPUTATION_ASC - SESSION_VALIDATORS_MIN_REPUTATION_DESC - SESSION_VALIDATORS_MIN_SESSION_ID_ASC - SESSION_VALIDATORS_MIN_SESSION_ID_DESC - SESSION_VALIDATORS_MIN_UPTIME_ASC - SESSION_VALIDATORS_MIN_UPTIME_DESC - SESSION_VALIDATORS_MIN_VALIDATOR_ID_ASC - SESSION_VALIDATORS_MIN_VALIDATOR_ID_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_ID_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_ID_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_BEST_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_IS_NEXT_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_REPUTATION_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_SESSION_ID_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_UPTIME_DESC - SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_ASC - SESSION_VALIDATORS_STDDEV_POPULATION_VALIDATOR_ID_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_ID_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_ID_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_BEST_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_IS_NEXT_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_REPUTATION_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_SESSION_ID_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_UPTIME_DESC - SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_ASC - SESSION_VALIDATORS_STDDEV_SAMPLE_VALIDATOR_ID_DESC - SESSION_VALIDATORS_SUM_BEST_ORDER_ASC - SESSION_VALIDATORS_SUM_BEST_ORDER_DESC - SESSION_VALIDATORS_SUM_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_SUM_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_SUM_ID_ASC - SESSION_VALIDATORS_SUM_ID_DESC - SESSION_VALIDATORS_SUM_IS_BEST_ASC - SESSION_VALIDATORS_SUM_IS_BEST_DESC - SESSION_VALIDATORS_SUM_IS_NEXT_ASC - SESSION_VALIDATORS_SUM_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_SUM_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_SUM_IS_NEXT_DESC - SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_SUM_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_SUM_REPUTATION_ASC - SESSION_VALIDATORS_SUM_REPUTATION_DESC - SESSION_VALIDATORS_SUM_SESSION_ID_ASC - SESSION_VALIDATORS_SUM_SESSION_ID_DESC - SESSION_VALIDATORS_SUM_UPTIME_ASC - SESSION_VALIDATORS_SUM_UPTIME_DESC - SESSION_VALIDATORS_SUM_VALIDATOR_ID_ASC - SESSION_VALIDATORS_SUM_VALIDATOR_ID_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_ID_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_ID_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_BEST_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_IS_NEXT_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_REPUTATION_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_SESSION_ID_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_UPTIME_DESC - SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_ASC - SESSION_VALIDATORS_VARIANCE_POPULATION_VALIDATOR_ID_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_BLOCK_NUMBER_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_ID_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_BEST_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_BEST_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_IS_NEXT_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_NEXT_BEST_ORDER_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_REPUTATION_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_SESSION_ID_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_UPTIME_DESC - SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_ASC - SESSION_VALIDATORS_VARIANCE_SAMPLE_VALIDATOR_ID_DESC -} - -"A floating point number that requires more precision than IEEE 754 binary 64" -scalar BigFloat - -""" - -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt - -"A location in a connection that can be used for resuming pagination." -scalar Cursor - -"The day, does not include a time." -scalar Date - -""" - -A point in time as described by the [ISO -8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. -""" -scalar Datetime - -"The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf)." -scalar JSON - -"A filter to be used against `Account` object types. All fields are combined with a logical ‘and.’" -input AccountFilter { - "Checks for all expressions in this list." - and: [AccountFilter!] - "Filter by the object’s `countryCodeId` field." - countryCodeId: StringFilter - "Filter by the object’s `createAtBlockId` field." - createAtBlockId: StringFilter - "Filter by the object’s `createdAt` field." - createdAt: StringFilter - "Filter by the object’s `creatorId` field." - creatorId: StringFilter - "Filter by the object’s `display` field." - display: StringFilter - "Filter by the object’s `email` field." - email: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `image` field." - image: StringFilter - "Filter by the object’s `legal` field." - legal: StringFilter - "Negates the expression." - not: AccountFilter - "Checks for any expressions in this list." - or: [AccountFilter!] - "Filter by the object’s `pgpFingerprint` field." - pgpFingerprint: StringFilter - "Filter by the object’s `riot` field." - riot: StringFilter - "Filter by the object’s `twitter` field." - twitter: StringFilter - "Filter by the object’s `web` field." - web: StringFilter -} - -"Conditions for `Account` aggregates." -input AccountsHavingInput { - AND: [AccountsHavingInput!] - OR: [AccountsHavingInput!] -} - -"A filter to be used against AppEnum155D64Ff70 fields. All fields are combined with a logical ‘and.’" -input AppEnum155D64Ff70Filter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: AppEnum155D64Ff70 - "Equal to the specified value." - equalTo: AppEnum155D64Ff70 - "Greater than the specified value." - greaterThan: AppEnum155D64Ff70 - "Greater than or equal to the specified value." - greaterThanOrEqualTo: AppEnum155D64Ff70 - "Included in the specified list." - in: [AppEnum155D64Ff70!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: AppEnum155D64Ff70 - "Less than or equal to the specified value." - lessThanOrEqualTo: AppEnum155D64Ff70 - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: AppEnum155D64Ff70 - "Not equal to the specified value." - notEqualTo: AppEnum155D64Ff70 - "Not included in the specified list." - notIn: [AppEnum155D64Ff70!] -} - -"A filter to be used against AppEnum790A3Fe4Ce fields. All fields are combined with a logical ‘and.’" -input AppEnum790A3Fe4CeFilter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: AppEnum790A3Fe4Ce - "Equal to the specified value." - equalTo: AppEnum790A3Fe4Ce - "Greater than the specified value." - greaterThan: AppEnum790A3Fe4Ce - "Greater than or equal to the specified value." - greaterThanOrEqualTo: AppEnum790A3Fe4Ce - "Included in the specified list." - in: [AppEnum790A3Fe4Ce!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: AppEnum790A3Fe4Ce - "Less than or equal to the specified value." - lessThanOrEqualTo: AppEnum790A3Fe4Ce - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: AppEnum790A3Fe4Ce - "Not equal to the specified value." - notEqualTo: AppEnum790A3Fe4Ce - "Not included in the specified list." - notIn: [AppEnum790A3Fe4Ce!] -} - -"A filter to be used against AppEnumB6165934C8 fields. All fields are combined with a logical ‘and.’" -input AppEnumB6165934C8Filter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: AppEnumB6165934C8 - "Equal to the specified value." - equalTo: AppEnumB6165934C8 - "Greater than the specified value." - greaterThan: AppEnumB6165934C8 - "Greater than or equal to the specified value." - greaterThanOrEqualTo: AppEnumB6165934C8 - "Included in the specified list." - in: [AppEnumB6165934C8!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: AppEnumB6165934C8 - "Less than or equal to the specified value." - lessThanOrEqualTo: AppEnumB6165934C8 - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: AppEnumB6165934C8 - "Not equal to the specified value." - notEqualTo: AppEnumB6165934C8 - "Not included in the specified list." - notIn: [AppEnumB6165934C8!] -} - -"A filter to be used against AppEnumFe385C7221 fields. All fields are combined with a logical ‘and.’" -input AppEnumFe385C7221Filter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: AppEnumFe385C7221 - "Equal to the specified value." - equalTo: AppEnumFe385C7221 - "Greater than the specified value." - greaterThan: AppEnumFe385C7221 - "Greater than or equal to the specified value." - greaterThanOrEqualTo: AppEnumFe385C7221 - "Included in the specified list." - in: [AppEnumFe385C7221!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: AppEnumFe385C7221 - "Less than or equal to the specified value." - lessThanOrEqualTo: AppEnumFe385C7221 - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: AppEnumFe385C7221 - "Not equal to the specified value." - notEqualTo: AppEnumFe385C7221 - "Not included in the specified list." - notIn: [AppEnumFe385C7221!] -} - -"Conditions for `Authority` aggregates." -input AuthoritiesHavingInput { - AND: [AuthoritiesHavingInput!] - OR: [AuthoritiesHavingInput!] -} - -"A filter to be used against `Authority` object types. All fields are combined with a logical ‘and.’" -input AuthorityFilter { - "Checks for all expressions in this list." - and: [AuthorityFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `current` field." - current: JSONFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `next` field." - next: JSONFilter - "Negates the expression." - not: AuthorityFilter - "Checks for any expressions in this list." - or: [AuthorityFilter!] -} - -"A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’" -input BigFloatFilter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: BigFloat - "Equal to the specified value." - equalTo: BigFloat - "Greater than the specified value." - greaterThan: BigFloat - "Greater than or equal to the specified value." - greaterThanOrEqualTo: BigFloat - "Included in the specified list." - in: [BigFloat!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: BigFloat - "Less than or equal to the specified value." - lessThanOrEqualTo: BigFloat - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: BigFloat - "Not equal to the specified value." - notEqualTo: BigFloat - "Not included in the specified list." - notIn: [BigFloat!] -} - -"A filter to be used against `Block` object types. All fields are combined with a logical ‘and.’" -input BlockFilter { - "Checks for all expressions in this list." - and: [BlockFilter!] - "Filter by the object’s `extrinsicsRoot` field." - extrinsicsRoot: StringFilter - "Filter by the object’s `hash` field." - hash: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: BlockFilter - "Filter by the object’s `number` field." - number: BigFloatFilter - "Checks for any expressions in this list." - or: [BlockFilter!] - "Filter by the object’s `parentHash` field." - parentHash: StringFilter - "Filter by the object’s `specVersion` field." - specVersion: StringFilter - "Filter by the object’s `stateRoot` field." - stateRoot: StringFilter - "Filter by the object’s `timestamp` field." - timestamp: DatetimeFilter -} - -input BlocksHavingAverageInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingDistinctCountInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -"Conditions for `Block` aggregates." -input BlocksHavingInput { - AND: [BlocksHavingInput!] - OR: [BlocksHavingInput!] - average: BlocksHavingAverageInput - distinctCount: BlocksHavingDistinctCountInput - max: BlocksHavingMaxInput - min: BlocksHavingMinInput - stddevPopulation: BlocksHavingStddevPopulationInput - stddevSample: BlocksHavingStddevSampleInput - sum: BlocksHavingSumInput - variancePopulation: BlocksHavingVariancePopulationInput - varianceSample: BlocksHavingVarianceSampleInput -} - -input BlocksHavingMaxInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingMinInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingStddevPopulationInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingStddevSampleInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingSumInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingVariancePopulationInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input BlocksHavingVarianceSampleInput { - number: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -"A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’" -input BooleanFilter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: Boolean - "Equal to the specified value." - equalTo: Boolean - "Greater than the specified value." - greaterThan: Boolean - "Greater than or equal to the specified value." - greaterThanOrEqualTo: Boolean - "Included in the specified list." - in: [Boolean!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: Boolean - "Less than or equal to the specified value." - lessThanOrEqualTo: Boolean - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: Boolean - "Not equal to the specified value." - notEqualTo: Boolean - "Not included in the specified list." - notIn: [Boolean!] -} - -"A filter to be used against `CountryCode` object types. All fields are combined with a logical ‘and.’" -input CountryCodeFilter { - "Checks for all expressions in this list." - and: [CountryCodeFilter!] - "Filter by the object’s `code` field." - code: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: CountryCodeFilter - "Checks for any expressions in this list." - or: [CountryCodeFilter!] -} - -"Conditions for `CountryCode` aggregates." -input CountryCodesHavingInput { - AND: [CountryCodesHavingInput!] - OR: [CountryCodesHavingInput!] -} - -"A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’" -input DatetimeFilter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: Datetime - "Equal to the specified value." - equalTo: Datetime - "Greater than the specified value." - greaterThan: Datetime - "Greater than or equal to the specified value." - greaterThanOrEqualTo: Datetime - "Included in the specified list." - in: [Datetime!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: Datetime - "Less than or equal to the specified value." - lessThanOrEqualTo: Datetime - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: Datetime - "Not equal to the specified value." - notEqualTo: Datetime - "Not included in the specified list." - notIn: [Datetime!] -} - -"A filter to be used against `Event` object types. All fields are combined with a logical ‘and.’" -input EventFilter { - "Checks for all expressions in this list." - and: [EventFilter!] - "Filter by the object’s `arguments` field." - arguments: StringFilter - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: BigFloatFilter - "Filter by the object’s `data` field." - data: StringFilter - "Filter by the object’s `docs` field." - docs: StringFilter - "Filter by the object’s `extrinsicId` field." - extrinsicId: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `index` field." - index: IntFilter - "Filter by the object’s `method` field." - method: StringFilter - "Filter by the object’s `module` field." - module: StringFilter - "Negates the expression." - not: EventFilter - "Checks for any expressions in this list." - or: [EventFilter!] - "Filter by the object’s `timestamp` field." - timestamp: DatetimeFilter -} - -input EventsHavingAverageInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingDistinctCountInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -"Conditions for `Event` aggregates." -input EventsHavingInput { - AND: [EventsHavingInput!] - OR: [EventsHavingInput!] - average: EventsHavingAverageInput - distinctCount: EventsHavingDistinctCountInput - max: EventsHavingMaxInput - min: EventsHavingMinInput - stddevPopulation: EventsHavingStddevPopulationInput - stddevSample: EventsHavingStddevSampleInput - sum: EventsHavingSumInput - variancePopulation: EventsHavingVariancePopulationInput - varianceSample: EventsHavingVarianceSampleInput -} - -input EventsHavingMaxInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingMinInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingStddevPopulationInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingStddevSampleInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingSumInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingVariancePopulationInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -input EventsHavingVarianceSampleInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter - timestamp: HavingDatetimeFilter -} - -"A filter to be used against `Extrinsic` object types. All fields are combined with a logical ‘and.’" -input ExtrinsicFilter { - "Checks for all expressions in this list." - and: [ExtrinsicFilter!] - "Filter by the object’s `arguments` field." - arguments: StringFilter - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: BigFloatFilter - "Filter by the object’s `hash` field." - hash: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `index` field." - index: IntFilter - "Filter by the object’s `isSigned` field." - isSigned: BooleanFilter - "Filter by the object’s `isSuccess` field." - isSuccess: BooleanFilter - "Filter by the object’s `method` field." - method: StringFilter - "Filter by the object’s `module` field." - module: StringFilter - "Negates the expression." - not: ExtrinsicFilter - "Checks for any expressions in this list." - or: [ExtrinsicFilter!] - "Filter by the object’s `signerId` field." - signerId: StringFilter -} - -input ExtrinsicsHavingAverageInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingDistinctCountInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -"Conditions for `Extrinsic` aggregates." -input ExtrinsicsHavingInput { - AND: [ExtrinsicsHavingInput!] - OR: [ExtrinsicsHavingInput!] - average: ExtrinsicsHavingAverageInput - distinctCount: ExtrinsicsHavingDistinctCountInput - max: ExtrinsicsHavingMaxInput - min: ExtrinsicsHavingMinInput - stddevPopulation: ExtrinsicsHavingStddevPopulationInput - stddevSample: ExtrinsicsHavingStddevSampleInput - sum: ExtrinsicsHavingSumInput - variancePopulation: ExtrinsicsHavingVariancePopulationInput - varianceSample: ExtrinsicsHavingVarianceSampleInput -} - -input ExtrinsicsHavingMaxInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingMinInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingStddevPopulationInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingStddevSampleInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingSumInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingVariancePopulationInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input ExtrinsicsHavingVarianceSampleInput { - blockNumber: HavingBigfloatFilter - index: HavingIntFilter -} - -input HavingBigfloatFilter { - equalTo: BigFloat - greaterThan: BigFloat - greaterThanOrEqualTo: BigFloat - lessThan: BigFloat - lessThanOrEqualTo: BigFloat - notEqualTo: BigFloat -} - -input HavingDatetimeFilter { - equalTo: Datetime - greaterThan: Datetime - greaterThanOrEqualTo: Datetime - lessThan: Datetime - lessThanOrEqualTo: Datetime - notEqualTo: Datetime -} - -input HavingIntFilter { - equalTo: Int - greaterThan: Int - greaterThanOrEqualTo: Int - lessThan: Int - lessThanOrEqualTo: Int - notEqualTo: Int -} - -"A filter to be used against `HeartBeat` object types. All fields are combined with a logical ‘and.’" -input HeartBeatFilter { - "Filter by the object’s `accountId` field." - accountId: StringFilter - "Checks for all expressions in this list." - and: [HeartBeatFilter!] - "Filter by the object’s `blockNumber` field." - blockNumber: BigFloatFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: HeartBeatFilter - "Checks for any expressions in this list." - or: [HeartBeatFilter!] - "Filter by the object’s `sessionId` field." - sessionId: StringFilter -} - -input HeartBeatsHavingAverageInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingDistinctCountInput { - blockNumber: HavingBigfloatFilter -} - -"Conditions for `HeartBeat` aggregates." -input HeartBeatsHavingInput { - AND: [HeartBeatsHavingInput!] - OR: [HeartBeatsHavingInput!] - average: HeartBeatsHavingAverageInput - distinctCount: HeartBeatsHavingDistinctCountInput - max: HeartBeatsHavingMaxInput - min: HeartBeatsHavingMinInput - stddevPopulation: HeartBeatsHavingStddevPopulationInput - stddevSample: HeartBeatsHavingStddevSampleInput - sum: HeartBeatsHavingSumInput - variancePopulation: HeartBeatsHavingVariancePopulationInput - varianceSample: HeartBeatsHavingVarianceSampleInput -} - -input HeartBeatsHavingMaxInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingMinInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingStddevPopulationInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingStddevSampleInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingSumInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingVariancePopulationInput { - blockNumber: HavingBigfloatFilter -} - -input HeartBeatsHavingVarianceSampleInput { - blockNumber: HavingBigfloatFilter -} - -"A filter to be used against Int fields. All fields are combined with a logical ‘and.’" -input IntFilter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: Int - "Equal to the specified value." - equalTo: Int - "Greater than the specified value." - greaterThan: Int - "Greater than or equal to the specified value." - greaterThanOrEqualTo: Int - "Included in the specified list." - in: [Int!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: Int - "Less than or equal to the specified value." - lessThanOrEqualTo: Int - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: Int - "Not equal to the specified value." - notEqualTo: Int - "Not included in the specified list." - notIn: [Int!] -} - -"A filter to be used against JSON fields. All fields are combined with a logical ‘and.’" -input JSONFilter { - "Contained by the specified JSON." - containedBy: JSON - "Contains the specified JSON." - contains: JSON - "Contains all of the specified keys." - containsAllKeys: [String!] - "Contains any of the specified keys." - containsAnyKeys: [String!] - "Contains the specified key." - containsKey: String - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: JSON - "Equal to the specified value." - equalTo: JSON - "Greater than the specified value." - greaterThan: JSON - "Greater than or equal to the specified value." - greaterThanOrEqualTo: JSON - "Included in the specified list." - in: [JSON!] - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: JSON - "Less than or equal to the specified value." - lessThanOrEqualTo: JSON - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: JSON - "Not equal to the specified value." - notEqualTo: JSON - "Not included in the specified list." - notIn: [JSON!] -} - -"A filter to be used against `KeygenThreshold` object types. All fields are combined with a logical ‘and.’" -input KeygenThresholdFilter { - "Checks for all expressions in this list." - and: [KeygenThresholdFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `current` field." - current: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `next` field." - next: IntFilter - "Negates the expression." - not: KeygenThresholdFilter - "Checks for any expressions in this list." - or: [KeygenThresholdFilter!] - "Filter by the object’s `pending` field." - pending: IntFilter -} - -input KeygenThresholdsHavingAverageInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingDistinctCountInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -"Conditions for `KeygenThreshold` aggregates." -input KeygenThresholdsHavingInput { - AND: [KeygenThresholdsHavingInput!] - OR: [KeygenThresholdsHavingInput!] - average: KeygenThresholdsHavingAverageInput - distinctCount: KeygenThresholdsHavingDistinctCountInput - max: KeygenThresholdsHavingMaxInput - min: KeygenThresholdsHavingMinInput - stddevPopulation: KeygenThresholdsHavingStddevPopulationInput - stddevSample: KeygenThresholdsHavingStddevSampleInput - sum: KeygenThresholdsHavingSumInput - variancePopulation: KeygenThresholdsHavingVariancePopulationInput - varianceSample: KeygenThresholdsHavingVarianceSampleInput -} - -input KeygenThresholdsHavingMaxInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingMinInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingStddevPopulationInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingStddevSampleInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingSumInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingVariancePopulationInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input KeygenThresholdsHavingVarianceSampleInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -"A filter to be used against `ProposalCounter` object types. All fields are combined with a logical ‘and.’" -input ProposalCounterFilter { - "Checks for all expressions in this list." - and: [ProposalCounterFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: ProposalCounterFilter - "Checks for any expressions in this list." - or: [ProposalCounterFilter!] - "Filter by the object’s `signedProposalsCount` field." - signedProposalsCount: IntFilter - "Filter by the object’s `signedProposalsMap` field." - signedProposalsMap: JSONFilter - "Filter by the object’s `statusMap` field." - statusMap: JSONFilter - "Filter by the object’s `unSignedProposalsCount` field." - unSignedProposalsCount: IntFilter - "Filter by the object’s `unSignedProposalsMap` field." - unSignedProposalsMap: JSONFilter -} - -input ProposalCountersHavingAverageInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingDistinctCountInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -"Conditions for `ProposalCounter` aggregates." -input ProposalCountersHavingInput { - AND: [ProposalCountersHavingInput!] - OR: [ProposalCountersHavingInput!] - average: ProposalCountersHavingAverageInput - distinctCount: ProposalCountersHavingDistinctCountInput - max: ProposalCountersHavingMaxInput - min: ProposalCountersHavingMinInput - stddevPopulation: ProposalCountersHavingStddevPopulationInput - stddevSample: ProposalCountersHavingStddevSampleInput - sum: ProposalCountersHavingSumInput - variancePopulation: ProposalCountersHavingVariancePopulationInput - varianceSample: ProposalCountersHavingVarianceSampleInput -} - -input ProposalCountersHavingMaxInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingMinInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingStddevPopulationInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingStddevSampleInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingSumInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingVariancePopulationInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -input ProposalCountersHavingVarianceSampleInput { - blockNumber: HavingIntFilter - signedProposalsCount: HavingIntFilter - unSignedProposalsCount: HavingIntFilter -} - -"A filter to be used against `ProposalItem` object types. All fields are combined with a logical ‘and.’" -input ProposalItemFilter { - "Checks for all expressions in this list." - and: [ProposalItemFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: IntFilter - "Filter by the object’s `chainId` field." - chainId: BigFloatFilter - "Filter by the object’s `data` field." - data: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `nonce` field." - nonce: IntFilter - "Negates the expression." - not: ProposalItemFilter - "Checks for any expressions in this list." - or: [ProposalItemFilter!] - "Filter by the object’s `removed` field." - removed: BooleanFilter - "Filter by the object’s `signature` field." - signature: StringFilter - "Filter by the object’s `status` field." - status: StringFilter - "Filter by the object’s `type` field." - type: AppEnumB6165934C8Filter -} - -input ProposalItemsHavingAverageInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingDistinctCountInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -"Conditions for `ProposalItem` aggregates." -input ProposalItemsHavingInput { - AND: [ProposalItemsHavingInput!] - OR: [ProposalItemsHavingInput!] - average: ProposalItemsHavingAverageInput - distinctCount: ProposalItemsHavingDistinctCountInput - max: ProposalItemsHavingMaxInput - min: ProposalItemsHavingMinInput - stddevPopulation: ProposalItemsHavingStddevPopulationInput - stddevSample: ProposalItemsHavingStddevSampleInput - sum: ProposalItemsHavingSumInput - variancePopulation: ProposalItemsHavingVariancePopulationInput - varianceSample: ProposalItemsHavingVarianceSampleInput -} - -input ProposalItemsHavingMaxInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingMinInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingStddevPopulationInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingStddevSampleInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingSumInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingVariancePopulationInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -input ProposalItemsHavingVarianceSampleInput { - blockNumber: HavingIntFilter - chainId: HavingBigfloatFilter - nonce: HavingIntFilter -} - -"A filter to be used against `ProposalTimelineStatus` object types. All fields are combined with a logical ‘and.’" -input ProposalTimelineStatusFilter { - "Checks for all expressions in this list." - and: [ProposalTimelineStatusFilter!] - "Filter by the object’s `blockNumber` field." - blockNumber: BigFloatFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: ProposalTimelineStatusFilter - "Checks for any expressions in this list." - or: [ProposalTimelineStatusFilter!] - "Filter by the object’s `proposalItemId` field." - proposalItemId: StringFilter - "Filter by the object’s `status` field." - status: AppEnum155D64Ff70Filter - "Filter by the object’s `timestamp` field." - timestamp: DatetimeFilter - "Filter by the object’s `txHash` field." - txHash: StringFilter -} - -input ProposalTimelineStatusesHavingAverageInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingDistinctCountInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -"Conditions for `ProposalTimelineStatus` aggregates." -input ProposalTimelineStatusesHavingInput { - AND: [ProposalTimelineStatusesHavingInput!] - OR: [ProposalTimelineStatusesHavingInput!] - average: ProposalTimelineStatusesHavingAverageInput - distinctCount: ProposalTimelineStatusesHavingDistinctCountInput - max: ProposalTimelineStatusesHavingMaxInput - min: ProposalTimelineStatusesHavingMinInput - stddevPopulation: ProposalTimelineStatusesHavingStddevPopulationInput - stddevSample: ProposalTimelineStatusesHavingStddevSampleInput - sum: ProposalTimelineStatusesHavingSumInput - variancePopulation: ProposalTimelineStatusesHavingVariancePopulationInput - varianceSample: ProposalTimelineStatusesHavingVarianceSampleInput -} - -input ProposalTimelineStatusesHavingMaxInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingMinInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingStddevPopulationInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingStddevSampleInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingSumInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingVariancePopulationInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -input ProposalTimelineStatusesHavingVarianceSampleInput { - blockNumber: HavingBigfloatFilter - timestamp: HavingDatetimeFilter -} - -"A filter to be used against `ProposalVote` object types. All fields are combined with a logical ‘and.’" -input ProposalVoteFilter { - "Checks for all expressions in this list." - and: [ProposalVoteFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: BigFloatFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: ProposalVoteFilter - "Checks for any expressions in this list." - or: [ProposalVoteFilter!] - "Filter by the object’s `proposalId` field." - proposalId: StringFilter - "Filter by the object’s `voteStatus` field." - voteStatus: AppEnumFe385C7221Filter - "Filter by the object’s `voterId` field." - voterId: StringFilter -} - -input ProposalVotesHavingAverageInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingDistinctCountInput { - blockNumber: HavingBigfloatFilter -} - -"Conditions for `ProposalVote` aggregates." -input ProposalVotesHavingInput { - AND: [ProposalVotesHavingInput!] - OR: [ProposalVotesHavingInput!] - average: ProposalVotesHavingAverageInput - distinctCount: ProposalVotesHavingDistinctCountInput - max: ProposalVotesHavingMaxInput - min: ProposalVotesHavingMinInput - stddevPopulation: ProposalVotesHavingStddevPopulationInput - stddevSample: ProposalVotesHavingStddevSampleInput - sum: ProposalVotesHavingSumInput - variancePopulation: ProposalVotesHavingVariancePopulationInput - varianceSample: ProposalVotesHavingVarianceSampleInput -} - -input ProposalVotesHavingMaxInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingMinInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingStddevPopulationInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingStddevSampleInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingSumInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingVariancePopulationInput { - blockNumber: HavingBigfloatFilter -} - -input ProposalVotesHavingVarianceSampleInput { - blockNumber: HavingBigfloatFilter -} - -"A filter to be used against `Proposer` object types. All fields are combined with a logical ‘and.’" -input ProposerFilter { - "Filter by the object’s `accountId` field." - accountId: StringFilter - "Checks for all expressions in this list." - and: [ProposerFilter!] - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: ProposerFilter - "Checks for any expressions in this list." - or: [ProposerFilter!] -} - -"A filter to be used against `ProposerThreshold` object types. All fields are combined with a logical ‘and.’" -input ProposerThresholdFilter { - "Checks for all expressions in this list." - and: [ProposerThresholdFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: ProposerThresholdFilter - "Checks for any expressions in this list." - or: [ProposerThresholdFilter!] - "Filter by the object’s `value` field." - value: IntFilter -} - -input ProposerThresholdsHavingAverageInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingDistinctCountInput { - value: HavingIntFilter -} - -"Conditions for `ProposerThreshold` aggregates." -input ProposerThresholdsHavingInput { - AND: [ProposerThresholdsHavingInput!] - OR: [ProposerThresholdsHavingInput!] - average: ProposerThresholdsHavingAverageInput - distinctCount: ProposerThresholdsHavingDistinctCountInput - max: ProposerThresholdsHavingMaxInput - min: ProposerThresholdsHavingMinInput - stddevPopulation: ProposerThresholdsHavingStddevPopulationInput - stddevSample: ProposerThresholdsHavingStddevSampleInput - sum: ProposerThresholdsHavingSumInput - variancePopulation: ProposerThresholdsHavingVariancePopulationInput - varianceSample: ProposerThresholdsHavingVarianceSampleInput -} - -input ProposerThresholdsHavingMaxInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingMinInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingStddevPopulationInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingStddevSampleInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingSumInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingVariancePopulationInput { - value: HavingIntFilter -} - -input ProposerThresholdsHavingVarianceSampleInput { - value: HavingIntFilter -} - -"Conditions for `Proposer` aggregates." -input ProposersHavingInput { - AND: [ProposersHavingInput!] - OR: [ProposersHavingInput!] -} - -"A filter to be used against `PublicKey` object types. All fields are combined with a logical ‘and.’" -input PublicKeyFilter { - "Checks for all expressions in this list." - and: [PublicKeyFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `compressed` field." - compressed: StringFilter - "Filter by the object’s `history` field." - history: JSONFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: PublicKeyFilter - "Checks for any expressions in this list." - or: [PublicKeyFilter!] - "Filter by the object’s `uncompressed` field." - uncompressed: StringFilter -} - -"Conditions for `PublicKey` aggregates." -input PublicKeysHavingInput { - AND: [PublicKeysHavingInput!] - OR: [PublicKeysHavingInput!] -} - -"A filter to be used against `Session` object types. All fields are combined with a logical ‘and.’" -input SessionFilter { - "Checks for all expressions in this list." - and: [SessionFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: SessionFilter - "Checks for any expressions in this list." - or: [SessionFilter!] - "Filter by the object’s `publicKeyId` field." - publicKeyId: StringFilter -} - -"A filter to be used against `SessionProposer` object types. All fields are combined with a logical ‘and.’" -input SessionProposerFilter { - "Checks for all expressions in this list." - and: [SessionProposerFilter!] - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: SessionProposerFilter - "Checks for any expressions in this list." - or: [SessionProposerFilter!] - "Filter by the object’s `proposerId` field." - proposerId: StringFilter - "Filter by the object’s `sessionId` field." - sessionId: StringFilter -} - -"Conditions for `SessionProposer` aggregates." -input SessionProposersHavingInput { - AND: [SessionProposersHavingInput!] - OR: [SessionProposersHavingInput!] -} - -"A filter to be used against `SessionValidator` object types. All fields are combined with a logical ‘and.’" -input SessionValidatorFilter { - "Checks for all expressions in this list." - and: [SessionValidatorFilter!] - "Filter by the object’s `bestOrder` field." - bestOrder: IntFilter - "Filter by the object’s `blockNumber` field." - blockNumber: BigFloatFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `isBest` field." - isBest: BooleanFilter - "Filter by the object’s `isNext` field." - isNext: BooleanFilter - "Filter by the object’s `isNextBest` field." - isNextBest: BooleanFilter - "Filter by the object’s `nextBestOrder` field." - nextBestOrder: IntFilter - "Negates the expression." - not: SessionValidatorFilter - "Checks for any expressions in this list." - or: [SessionValidatorFilter!] - "Filter by the object’s `reputation` field." - reputation: IntFilter - "Filter by the object’s `sessionId` field." - sessionId: StringFilter - "Filter by the object’s `uptime` field." - uptime: IntFilter - "Filter by the object’s `validatorId` field." - validatorId: StringFilter -} - -input SessionValidatorsHavingAverageInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingDistinctCountInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -"Conditions for `SessionValidator` aggregates." -input SessionValidatorsHavingInput { - AND: [SessionValidatorsHavingInput!] - OR: [SessionValidatorsHavingInput!] - average: SessionValidatorsHavingAverageInput - distinctCount: SessionValidatorsHavingDistinctCountInput - max: SessionValidatorsHavingMaxInput - min: SessionValidatorsHavingMinInput - stddevPopulation: SessionValidatorsHavingStddevPopulationInput - stddevSample: SessionValidatorsHavingStddevSampleInput - sum: SessionValidatorsHavingSumInput - variancePopulation: SessionValidatorsHavingVariancePopulationInput - varianceSample: SessionValidatorsHavingVarianceSampleInput -} - -input SessionValidatorsHavingMaxInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingMinInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingStddevPopulationInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingStddevSampleInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingSumInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingVariancePopulationInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionValidatorsHavingVarianceSampleInput { - bestOrder: HavingIntFilter - blockNumber: HavingBigfloatFilter - nextBestOrder: HavingIntFilter - reputation: HavingIntFilter - uptime: HavingIntFilter -} - -input SessionsHavingAverageInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingDistinctCountInput { - blockNumber: HavingIntFilter -} - -"Conditions for `Session` aggregates." -input SessionsHavingInput { - AND: [SessionsHavingInput!] - OR: [SessionsHavingInput!] - average: SessionsHavingAverageInput - distinctCount: SessionsHavingDistinctCountInput - max: SessionsHavingMaxInput - min: SessionsHavingMinInput - stddevPopulation: SessionsHavingStddevPopulationInput - stddevSample: SessionsHavingStddevSampleInput - sum: SessionsHavingSumInput - variancePopulation: SessionsHavingVariancePopulationInput - varianceSample: SessionsHavingVarianceSampleInput -} - -input SessionsHavingMaxInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingMinInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingStddevPopulationInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingStddevSampleInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingSumInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingVariancePopulationInput { - blockNumber: HavingIntFilter -} - -input SessionsHavingVarianceSampleInput { - blockNumber: HavingIntFilter -} - -"A filter to be used against `SignatureThreshold` object types. All fields are combined with a logical ‘and.’" -input SignatureThresholdFilter { - "Checks for all expressions in this list." - and: [SignatureThresholdFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `current` field." - current: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `next` field." - next: IntFilter - "Negates the expression." - not: SignatureThresholdFilter - "Checks for any expressions in this list." - or: [SignatureThresholdFilter!] - "Filter by the object’s `pending` field." - pending: IntFilter -} - -input SignatureThresholdsHavingAverageInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingDistinctCountInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -"Conditions for `SignatureThreshold` aggregates." -input SignatureThresholdsHavingInput { - AND: [SignatureThresholdsHavingInput!] - OR: [SignatureThresholdsHavingInput!] - average: SignatureThresholdsHavingAverageInput - distinctCount: SignatureThresholdsHavingDistinctCountInput - max: SignatureThresholdsHavingMaxInput - min: SignatureThresholdsHavingMinInput - stddevPopulation: SignatureThresholdsHavingStddevPopulationInput - stddevSample: SignatureThresholdsHavingStddevSampleInput - sum: SignatureThresholdsHavingSumInput - variancePopulation: SignatureThresholdsHavingVariancePopulationInput - varianceSample: SignatureThresholdsHavingVarianceSampleInput -} - -input SignatureThresholdsHavingMaxInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingMinInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingStddevPopulationInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingStddevSampleInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingSumInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingVariancePopulationInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input SignatureThresholdsHavingVarianceSampleInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -"A filter to be used against String fields. All fields are combined with a logical ‘and.’" -input StringFilter { - "Not equal to the specified value, treating null like an ordinary value." - distinctFrom: String - "Not equal to the specified value, treating null like an ordinary value (case-insensitive)." - distinctFromInsensitive: String - "Ends with the specified string (case-sensitive)." - endsWith: String - "Ends with the specified string (case-insensitive)." - endsWithInsensitive: String - "Equal to the specified value." - equalTo: String - "Equal to the specified value (case-insensitive)." - equalToInsensitive: String - "Greater than the specified value." - greaterThan: String - "Greater than the specified value (case-insensitive)." - greaterThanInsensitive: String - "Greater than or equal to the specified value." - greaterThanOrEqualTo: String - "Greater than or equal to the specified value (case-insensitive)." - greaterThanOrEqualToInsensitive: String - "Included in the specified list." - in: [String!] - "Included in the specified list (case-insensitive)." - inInsensitive: [String!] - "Contains the specified string (case-sensitive)." - includes: String - "Contains the specified string (case-insensitive)." - includesInsensitive: String - "Is null (if `true` is specified) or is not null (if `false` is specified)." - isNull: Boolean - "Less than the specified value." - lessThan: String - "Less than the specified value (case-insensitive)." - lessThanInsensitive: String - "Less than or equal to the specified value." - lessThanOrEqualTo: String - "Less than or equal to the specified value (case-insensitive)." - lessThanOrEqualToInsensitive: String - "Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters." - like: String - "Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters." - likeInsensitive: String - "Equal to the specified value, treating null like an ordinary value." - notDistinctFrom: String - "Equal to the specified value, treating null like an ordinary value (case-insensitive)." - notDistinctFromInsensitive: String - "Does not end with the specified string (case-sensitive)." - notEndsWith: String - "Does not end with the specified string (case-insensitive)." - notEndsWithInsensitive: String - "Not equal to the specified value." - notEqualTo: String - "Not equal to the specified value (case-insensitive)." - notEqualToInsensitive: String - "Not included in the specified list." - notIn: [String!] - "Not included in the specified list (case-insensitive)." - notInInsensitive: [String!] - "Does not contain the specified string (case-sensitive)." - notIncludes: String - "Does not contain the specified string (case-insensitive)." - notIncludesInsensitive: String - "Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters." - notLike: String - "Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters." - notLikeInsensitive: String - "Does not start with the specified string (case-sensitive)." - notStartsWith: String - "Does not start with the specified string (case-insensitive)." - notStartsWithInsensitive: String - "Starts with the specified string (case-sensitive)." - startsWith: String - "Starts with the specified string (case-insensitive)." - startsWithInsensitive: String -} - -"A filter to be used against `Threshold` object types. All fields are combined with a logical ‘and.’" -input ThresholdFilter { - "Checks for all expressions in this list." - and: [ThresholdFilter!] - "Filter by the object’s `current` field." - current: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Filter by the object’s `next` field." - next: IntFilter - "Negates the expression." - not: ThresholdFilter - "Checks for any expressions in this list." - or: [ThresholdFilter!] - "Filter by the object’s `pending` field." - pending: IntFilter - "Filter by the object’s `sessionId` field." - sessionId: StringFilter - "Filter by the object’s `variant` field." - variant: AppEnum790A3Fe4CeFilter -} - -input ThresholdsHavingAverageInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingDistinctCountInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -"Conditions for `Threshold` aggregates." -input ThresholdsHavingInput { - AND: [ThresholdsHavingInput!] - OR: [ThresholdsHavingInput!] - average: ThresholdsHavingAverageInput - distinctCount: ThresholdsHavingDistinctCountInput - max: ThresholdsHavingMaxInput - min: ThresholdsHavingMinInput - stddevPopulation: ThresholdsHavingStddevPopulationInput - stddevSample: ThresholdsHavingStddevSampleInput - sum: ThresholdsHavingSumInput - variancePopulation: ThresholdsHavingVariancePopulationInput - varianceSample: ThresholdsHavingVarianceSampleInput -} - -input ThresholdsHavingMaxInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingMinInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingStddevPopulationInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingStddevSampleInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingSumInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingVariancePopulationInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -input ThresholdsHavingVarianceSampleInput { - current: HavingIntFilter - next: HavingIntFilter - pending: HavingIntFilter -} - -"A filter to be used against `UnsignedProposalsQueue` object types. All fields are combined with a logical ‘and.’" -input UnsignedProposalsQueueFilter { - "Checks for all expressions in this list." - and: [UnsignedProposalsQueueFilter!] - "Filter by the object’s `blockId` field." - blockId: StringFilter - "Filter by the object’s `blockNumber` field." - blockNumber: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: UnsignedProposalsQueueFilter - "Checks for any expressions in this list." - or: [UnsignedProposalsQueueFilter!] -} - -"A filter to be used against `UnsignedProposalsQueueItem` object types. All fields are combined with a logical ‘and.’" -input UnsignedProposalsQueueItemFilter { - "Checks for all expressions in this list." - and: [UnsignedProposalsQueueItemFilter!] - "Filter by the object’s `blockNumber` field." - blockNumber: IntFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: UnsignedProposalsQueueItemFilter - "Checks for any expressions in this list." - or: [UnsignedProposalsQueueItemFilter!] - "Filter by the object’s `proposalId` field." - proposalId: StringFilter - "Filter by the object’s `queueId` field." - queueId: StringFilter -} - -input UnsignedProposalsQueueItemsHavingAverageInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingDistinctCountInput { - blockNumber: HavingIntFilter -} - -"Conditions for `UnsignedProposalsQueueItem` aggregates." -input UnsignedProposalsQueueItemsHavingInput { - AND: [UnsignedProposalsQueueItemsHavingInput!] - OR: [UnsignedProposalsQueueItemsHavingInput!] - average: UnsignedProposalsQueueItemsHavingAverageInput - distinctCount: UnsignedProposalsQueueItemsHavingDistinctCountInput - max: UnsignedProposalsQueueItemsHavingMaxInput - min: UnsignedProposalsQueueItemsHavingMinInput - stddevPopulation: UnsignedProposalsQueueItemsHavingStddevPopulationInput - stddevSample: UnsignedProposalsQueueItemsHavingStddevSampleInput - sum: UnsignedProposalsQueueItemsHavingSumInput - variancePopulation: UnsignedProposalsQueueItemsHavingVariancePopulationInput - varianceSample: UnsignedProposalsQueueItemsHavingVarianceSampleInput -} - -input UnsignedProposalsQueueItemsHavingMaxInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingMinInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingStddevPopulationInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingStddevSampleInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingSumInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingVariancePopulationInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueueItemsHavingVarianceSampleInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingAverageInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingDistinctCountInput { - blockNumber: HavingIntFilter -} - -"Conditions for `UnsignedProposalsQueue` aggregates." -input UnsignedProposalsQueuesHavingInput { - AND: [UnsignedProposalsQueuesHavingInput!] - OR: [UnsignedProposalsQueuesHavingInput!] - average: UnsignedProposalsQueuesHavingAverageInput - distinctCount: UnsignedProposalsQueuesHavingDistinctCountInput - max: UnsignedProposalsQueuesHavingMaxInput - min: UnsignedProposalsQueuesHavingMinInput - stddevPopulation: UnsignedProposalsQueuesHavingStddevPopulationInput - stddevSample: UnsignedProposalsQueuesHavingStddevSampleInput - sum: UnsignedProposalsQueuesHavingSumInput - variancePopulation: UnsignedProposalsQueuesHavingVariancePopulationInput - varianceSample: UnsignedProposalsQueuesHavingVarianceSampleInput -} - -input UnsignedProposalsQueuesHavingMaxInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingMinInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingStddevPopulationInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingStddevSampleInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingSumInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingVariancePopulationInput { - blockNumber: HavingIntFilter -} - -input UnsignedProposalsQueuesHavingVarianceSampleInput { - blockNumber: HavingIntFilter -} - -"A filter to be used against `Validator` object types. All fields are combined with a logical ‘and.’" -input ValidatorFilter { - "Filter by the object’s `accountId` field." - accountId: StringFilter - "Checks for all expressions in this list." - and: [ValidatorFilter!] - "Filter by the object’s `authorityId` field." - authorityId: StringFilter - "Filter by the object’s `id` field." - id: StringFilter - "Negates the expression." - not: ValidatorFilter - "Checks for any expressions in this list." - or: [ValidatorFilter!] -} - -"Conditions for `Validator` aggregates." -input ValidatorsHavingInput { - AND: [ValidatorsHavingInput!] - OR: [ValidatorsHavingInput!] -}